Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@iwikmai
Last active March 4, 2018 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwikmai/f68670fab3526834c9c8b092b02a09d2 to your computer and use it in GitHub Desktop.
Save iwikmai/f68670fab3526834c9c8b092b02a09d2 to your computer and use it in GitHub Desktop.
import datetime
name = input("What's your name?")
age = int(input("How old are you?"))
print("Hi " + name + ", you will turn 100 in " + str(datetime.datetime.now().year + (100 - int(age))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment