#include #define FastIO (cin.tie(0), cout.tie(0), ios::sync_with_stdio(false)) #define rep(i, n) for (int i = 0; i < (int)(n); i++) using namespace std; void solve() { // your code here int n; cin >> n; rep(_, n) cout << "Hello! You're new here, right? It's nice to meet you.\n"; } int main() { FastIO; solve(); return 0; }