#include using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) templatebool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } templatebool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } typedef long long ll; using ll = long long; using P = pair; int main() { int n; cin >> n; rep(i,n) cout << "Hello! You're new here, right? It's nice to meet you." << endl; }