using namespace std; // Write hello to the screen. main() { // Store the current hour. int hour=12; cout << "Hello" << endl << "Good morning."; cout << endl; cout << "The current hour is: " << hour; }