#include <iostream> #include <string> using namespace std; int main( ) { string s; cout << "Hello World!" << endl; cin >> s; return 0; }
Report message to a moderator