#include<bits/stdc++.h>
using namespace std;
int main(){
	string a;
	getline(cin,a);
	cout<<a;
	return 0;
}

