// This program outputs the message // // C++: one small step for the program, // one giant leap for the programmer // // to the screen #include using namespace std; int main() { cout << "C++: one small step for the program,\n" << "one giant leap for the programmer\n"; return 0; }