Skip to content

Instantly share code, notes, and snippets.

View Pushpinder2751's full-sized avatar

Pushpinder Singh Pushpinder2751

View GitHub Profile
name = input("What is your name: ")
age = int(input("How old are you: "))
year = str((2014 - age)+100)
print(name + " will be 100 years old in the year " + year)