#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
using namespace std;

int main() {
    cin.tie(0)->sync_with_stdio(0);

    int N;
    cin >> N;
    while (N--) {
        cout << "Hello! You're new here, right? It's nice to meet you.\n";
    }

    return 0;
}