#include using namespace std; int main(){ int n; cin >> n; string s; while (n--){ cin >> s; cout << s; } cout << endl; return 0; }