#include using namespace std; int main(){ int N; cin >> N; while(N--){ string S; cin >> S; cout << stoi(S) << endl; } }