#line 1 "main.cpp"
#include <iostream>

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;
}