C++
0.9 pts Name your source code file hw2-4.cpp. For this exercise, you will write a program which plays the game of Mad Lib. Google it if you are like me and had no idea what a Mad Lib is. Your program shall prompt the user to enter the following data:
a) Instructor name (first name, followed by a space, followed by last name)
b) Your name (just like instructor name)
c) A food
d) An integer in [100, 120]
e) An adjective
f) A color
g) An animal
After the data is entered, substitute the entered strings into the story below, which is to be output to the console (note: when you output one of the strings, do not enclose it in braces):
Dear Instructor [instructor Name],
I am sorry that I am unable to turn in my homework at this time. First, I ate a rotten [Food], which made me turn [Color] and extremely ill. Then, I came down with a fever of [Integer]. Next, my [Adjective] pet [Animal] must have smelled the remains of the [Food] on my homework because he ate it. I am currently rewriting my homework and hope you will accept it here.
Sincerely, [Your Name]
You will submit your Homework 2 solution to Gradescope for grading as a zip archive that contains exactly four files: hw2-1.cpp, hw2-2.txt, hw2-3.txt, and hw2-4.cpp.