Program to prompt user for name and age and then tell them the year they were born
prompt user for name
name = input("What is your name? ")
prompt user for age
age = input("How old are you? ")
calculate year of birth
year_of_birth = 2022 - int(age)
print message to user
print("Hello " + name + "! You were born in " + str(year_of_birth) + ".")