Nested Conditionals

Write a program Food that asks the user for her favorite food, and then gives responses depending on the answer.  For at least two possible answers, the program should ask a followup question and respond based on that answer.

For example…

Computer: “What is your favorite food?”

Human: “Pizza”

Computer:  “Do you like pepperoni or cheese?”

Human: “Cheese”

Computer:  “You are so boring.”

You’ll do this by putting one “if” statement inside another one.

This is an important part of the assignment!  Make sure you understand what it means to put code “inside” an if statement before you turn in food.