#include <bits/stdc++.h> using namespace std; int main (void){ ios::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; while(n--){ string t; cin >> t; cout << t << "\n"; } }