#include using namespace std; int t, n; int main() { cin >> t; for (int i = 0; i < t; i++) { cin >> n; cout << n * 2 << endl; } }