#include #include int main() { int N; std::cin >> N; std::string ss = "Hello!You're new here, right? It's nice to meet you."; for (int i = 0; i < N; ++i) { std::cout << ss << std::endl; } return 0; }