#include using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) int main(){ int N; scanf("%d",&N); rep(i,N) printf("Hello! You're new here, right? It's nice to meet you.\n"); return 0; }