#include <iostream>
// The above statement includes some prewritten code that allows us to use the cin and cout operators
using namespace std;
// Just remember to include the above line in your c++ programs
// If you are curious about the concept of namespaces, checkout this site: https://www.w3schools.in/cplusplus/namespace
int main()
// This is the function which is called when the program is executed. Basically, this is where you code.
{
cout<<"Hello World";
}