#include <iostream>
#include <string>

using namespace std;

int main() {
string abc;
getline (std::cin,abc);
cout<< abc;
	// your code goes here
	return 0;
}