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