#include using namespace std; #define rep(i,n) for(int i=0; i<(int)(n); ++i) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin>>n; rep(i,n) cout<<"Hello! You're new here, right? It's nice to meet you.\n"; }