#include //for std, cout, << #include //for EXIT_SUCCESS //Lyrics by Yip Harburg. //This time, without the newline (\n) characters. int main() { std::cout << "Once I built a railroad,"; std::cout << "Made it run:"; std::cout << "Made it race against time."; return EXIT_SUCCESS; }