#include #define rep(i,n)for(long long i=0;i<(n);i++) using namespace std; typedef unsigned long long ull; typedef long long ll; const ll INF=1e18; const int MOD=1e9+7; const double pi=acos(-1); int main(){ int n; cin >> n; string s=""; rep(i,n){ string t; cin >> t; s+=t; } cout << s << endl; return 0; }