#include #define rep(i,n) for(ll i=0;i<(ll)(n);i++) #define REP(i,k,n) for(ll i=k;i<(ll)(n);i++) #define fore(i,a) for(auto &i:a) using namespace std; using ll = long long; int main() { int n; cin >> n; rep(i,n) cout << "Hello! You're new here, right? It's nice to meet you." << endl; return 0; }