You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Create a program that asks the user to enter their name and their age. Print out a message addressed to them that tells them the year they will turn 100 years old.
curr_Y = 2017
name = input()
age = int(input())
diff = 100 - age
print(name,"will be 100 years old in",curr_Y + diff)