#include using namespace std; int main() { int T; cin >> T; int64_t N; for(int t = 0; t < T; t++) { cin >> N; cout << 2 * N << endl; } return 0; }