# This program asks what type of food a person likes. print("Welcome! This program asks what type of food a person likes.") food = input("Choose a favorite food from these options: Pizza, Fish & Chips, or Other: ") print(f"You have picked {food}.") confirm = input("Is this correct? (yes/no): ").lower() if confirm == "yes": print("Great choice!") elif confirm == "no": print("Please pick again.") else: print("Invalid response. Please answer with yes or no.") print("The program has ended.")