#include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; vector ans(N); for (int i = 0; i < N; i++) { string S; cin >> S; ans[i] = stoi(S); } for (int i: ans) cout << i << endl; return 0; }