name = input("What is your name: ") #here the user will input their name age = int(input("What is your age: ")) #here the user will input their age year = ((2017 - age) + 100) print(name, " will be 100 years old in the year ", year)