#include <iostream> #include <vector> #include <algorithm> #include <string> #include <map> #include <cmath> using namespace std; int main() { string str; while (getline(cin,str)) { cout << str << endl; } return 0; }