#include using namespace std; int main(){ int n; cin >> n; string ans = ""; for(int i=0; i 0)ans += "\n"; ans += "Hello world!"; } cout << ans << endl; }