#include <iostream>
using namespace std;  // We shall discuss this later
         // In the general case, we should not do that but
         // our programs are simple enough to allow
         // using the namespace

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