#include using namespace std; int main() { int n; string s; cin >> n; for (int i = 0; i < n; i++) { cin >> s; cout << stoi(s) << endl; } return 0; }