#include using namespace std; int main() { int N; cin >> N; string S; while (N--) { cin >> S; cout << S; } cout << "\n"; }