#include <iostream> #include <string> using namespace std; int main() { string name; getline(cin, name); cout << name << "\n"; }