#include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int main() { int n; std::cin >> n; for (size_t i = 0; i < n; i++) { std::cout << "Hello! You're new here, right? It's nice to meet you." << '\n'; } }