#line 1 "main.cpp" #include using namespace std; void solve() { int q; cin >> q; while (q--) { cout << "Hello! You're new here, right? It's nice to meet you.\n"; } } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); solve(); return 0; }