#include #include int main() { int N; std::cin >> N; std::string str = ""; for (int i = 0; i < N; i++) { std::string temp; std::cin >> temp; str.append(temp); } std::cout << str; return 0; }