#include <iostream> using namespace std; void print(string s) { cout << s; } int main() { string s; getline(cin, s); print(s); }