#include #include using namespace std; //Lyrics by Yip Harburg. //Do all the output in just one statement. //Only one semicolon because there's just one statment. int main() { cout << "Once I built a railroad,\n" << "Made it run:\n" << "Made it race against time.\n"; return EXIT_SUCCESS; }