#include <bits/stdc++.h>

using namespace std;

int main()
{
string a, s;
ios_base::sync_with_stdio(false);
cin>>s;
	while(!cin.eof())
	{
		a+=s;
		cin>>s;
	}
	cout<<a<<'\n';
}