Create a Python program that uses a loop to print the lyrics for "Five Little Monkeys Jumping on the Bed." However, change it so that the user can enter the number of monkeys to start with. Use a for loop to start at the number input by the user and work backwards through "no more monkeys jumping on the bed." You MUST use a for loop and a variable in your print statements. Your output should resemble the following:
How many monkeys start jumping on the bed? 8
8 little monkeys jumping on the bed, I fell off and bumped my head, momma called the doctor and the doctor said, no more monkeys jumping on the bed.
7 little monkeys jumping on the bed, I fell off and bumped my head, momma called the doctor and the doctor said, no more monkeys jumping on the bed.
6 little monkeys jumping on the bed, I fell off and bumped my head, momma called the doctor and the doctor said, no more monkeys jumping on the bed.
5 little monkeys jumping on the bed, I fell off and bumped my head, momma called the doctor and the doctor said, no more monkeys jumping on the bed.
4 little monkeys jumping on the bed, I fell off and bumped my head, momma called the doctor and the doctor said, no more monkeys jumping on the bed.