#include	<iostream>

using std::cout;
using std::endl;

int main()
{
	cout << "Hello world!" << endl;
	return 0;
}
