#include<iostream> using namespace std; int main() { char str[30]; cin.getline(str, 30); cout << str << endl; return 0; }