What is the otput of this program if the user input is 'ant'?

animal=input("Which animal? ")
animals = ["ant", "bear", "seal"]
if animal in animals:
print("bingo")
else:
print("boo")

Q&A Education