#include <iostream>  //    C++ I/O support
using namespace std;  //    I/O is from the std namespace

int main ()       // C++ program entry point      
{

    cout << "Hello World" << endl;     // output to the console

    return 0;      // main function return

}