#include <iostream>
using std::cout;
using std::endl;

int main (void)
{
    cout << "Hello, World!" << endl;
    return 0;
}


