#Conditional statements name = input("What is your name? ") print("Hello {name}, I am going to ask a questions about you.") height = input("Are you tall or short? ") if height == "tall": print("Giraffe...") else: print("Lol, you can't see the top shelf!!!") print("The program has ended.")