#include using namespace std; int main() { // Use standard output stream cout // // and operator << to send "Hello World” // // and a newline (end line) to stdout cout << "Hello World" << 9 << endl; return 0; }