#include <iostream> 

using namespace std; 

int main() {
    cout << "Hello, World! \n\n"; 
    cout << "Enter any character to exit: ";
    string x;
    cin >> x;
    return 0;
}

