#include using namespace std; int main(){ int N; string s, in; cin >> N; while(cin >> in) s+=in; cout << s << endl; return 0; }