name = input("What is your name? ") age = int(input("How old are you? ")) color = input("What is your favorite color? ") if age < 7: print("You are still very young") elif age < 10: print("You are a young coder") else: print("You are growing fast") print("Hello " + name + "!") print("Your favorite color is " + color + "!")