#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; string a="Happy new year!Good luck!"; while(n--) cout<<a<<endl; return 0; }