#include using namespace std; int main(){ #ifndef ONLINE_JUDGE freopen("a.in", "r", stdin); #endif // ONLINE_JUDGE string A, s; while(cin >> s){ A = A + s; } cout << A; return 0; }