#include #include using namespace std; //Lyrics by Yip Harburg. //A long statement can be spread out over several lines. //As usual, the statement ends with a semicolon. int main() { cout << "Once I built a railroad,\n" << "Made it run:\n" << "Made it race against time.\n"; return EXIT_SUCCESS; }