#include //for std, cout, << #include //for EXIT_SUCCESS using namespace std; //Get on a first name basis with the members of std. //Lyrics by Yip Harburg. int main() { cout << "Once I built a railroad,\n"; cout << "Made it run:\n"; cout << "Made it race against time.\n"; return EXIT_SUCCESS; }