Created
December 6, 2017 16:11
-
-
Save pitdeer/d050a5c843d4155e7b4a583ff305b69c 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
name = input("Enter your name: ") | |
age = int(input("What is your age? ")) | |
year = 2017 - age + 100 | |
year = str(year) | |
age = str(age) | |
print("Hey " + name + "! You will turn 100 in " + year) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment