#include using namespace std; int main() { int T; cin >> T; while (T--) { int n; cin >> n; cout << 2 * n << endl; } return 0; }