#include <iostream>#define SIZE 10001using namespace std; int main() { char s[SIZE]; cin.getline(s,SIZE,NULL); cout << s; return 0;}