Last active
March 4, 2018 21:59
-
-
Save iwikmai/f68670fab3526834c9c8b092b02a09d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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