#include<iostream>
using namespace std;
// main function
// where the execution of program begins
int main()
{
// prints Hello world

cout<<"Hello World";

return 0;
}
