# input() pauses the program and waits for the player to type
name = input("What is your wizard name? ")
print("Nice to meet you,", name)

# Always convert before comparing numbers or doing math
age_text = input("How old are you? ")
age = int(age_text)
if age >= 11:
    print("You may receive your Hogwarts letter!")
else:
    print("A few more years of Muggle school...")
