#include #include using namespace std; int main() { string things[] { "", "log in the ", "bump on the ", "frog on the ", "wart on the ", "fly on the ", "flea on the ", "smile on the " }; for (int parts {0}; parts <= 7; ++parts) { for (int i{0}; i <= 1; ++i){ cout << "There's a "; for (int a {parts}; a >= 0; --a) { cout << things[a]; } cout << "in the bottom of the sea.\n"; } cout << "There's a hole, there's a hole.\n"; cout << "There's a hole in the bottom of the sea.\n\n"; } return EXIT_SUCCESS; }