#include using namespace std; int n; string ans, s; int main() { cin >> n; for (int i = 0; i < n; i++) { cin >> s; ans += s; } cout << ans << endl; }