The program below leads the user through a classic "Knock Knock" joke. The user must enter the word "Banana" two times at the "Who's There?" prompt to reach the final punchline. If the user enters anything other than "Banana" when prompted, the "Who's There?" prompt should repeat.

All of the input and output statements have been done for you. Your job is to set up nested loops to make the program behave correctly.

Where shown by the first comment, add a "for" loop with a range that will iterate two times.
Where shown by the second comment, add a "while" loop that will continue while the answer is not equal to "Banana".
The following examples demonstrate the expected program output.

Knock Knock
Who's There?
Banana
Banana Who?
Knock Knock
Who's There?
Banana
Banana Who?
Knock Knock
Who's There?
Orange
Orange Who?
Orange you glad I didn't say banana!
Knock Knock
Who's There?
Banana
Banana Who?
Knock Knock
Who's There?
Let
Who's There?
me
Who's There?
out
Who's There?
Banana
Banana Who?
Knock Knock
Who's There?
Orange
Orange Who?
Orange you glad I didn't say banana!

#add a "for" loop here to iterate twice

print("Knock Knock")
answer = ""

# add a "while" loop here to iterate while the answer is not equal to "Banana"

print(" Who's There?")
answer = input(" ")
print(" Banana Who?")

print("Knock Knock")
print(" Who's There?")
print(" Orange")
print(" Orange Who?")
print(" Orange you glad I didn't say banana!")

#add a "for" loop here to iterate twice

for i in range(2):
print("Knock Knock")
answer = ""

# add a "while" loop here to iterate while the answer is not equal to "Banana"
while answer != "Banana":
print(" Who's There?")
answer = input(" ")
print(" Banana Who?")

print("Knock Knock")
print(" Who's There?")
print(" Orange")
print(" Orange Who?")
print(" Orange you glad I didn't say banana!")