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