#include <iostream>
#include <cstdlib>


int main()
{
    std::cout << "Hello World!\n";
    system("pause");
    return 0;
}