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