#include using namespace std; int main() { string line; getline(cin,line); while(cin) { cout << line << endl; getline(cin,line); } return 0; }