# Imagine you are writing a program to mimic # the Simpson kids in the Simpsons' ride scenario # (https://www.youtube.com/watch?v=_73wNsR_Dto) # # Write a program, using a while loop, # that repeatedly asks "Are we there yet?" # until the answer is "yes" # the program then prints "Yay!!" are_we_there = "" while are_we_there != "yes": are_we_there = input("Are we there yet? ") print("Yay!!")