#include<iostream>using namespace std;// main function// where the execution of program beginsint main(){// prints Hello world cout<<"Hello World"; return 0;}