#include using namespace std; template T gcd(T x, T y) { if (y == 0) return x; return gcd(y, x % y); } template T lcm(T x, T y) { if (x == 0 || y == 0) return 0; return x / gcd(x, y) * y; } int main() { int n; cin >> n; string S; string ans = ""; while (cin >> S) ans += S; cout << ans << endl; }