#include <bits/stdc++.h>
using namespace std;

int main() {
string x = "hello\n\
new\n\
world\n";
cout << x << endl;
return 0;
}