# This program will ask for a name and the age. It will check the range and #display a message from datetime import date current_year = date.today().year name = input("What is your name? ") print (f"Hello {name}!") birth_date = int(input('What year were you born? ')) age = (current_year - birth_date) if age >= 20: print ("you are aged 20 and older.") elif age >= 15 and age <= 18: print("you are between 15 to 18 years old.") elif 13 <= age <= 19: print("you are a teenager.") else: print("you under 13 years old.") print (f'You will be {age} years old at the end of this year!') print(f'Thanks {name}, you were born in {birth_date}.') print ("This program has ended")