Created
October 9, 2019 13:19
-
-
Save SametSahin10/a26264e5a74f629f3cf187f282c5a568 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("What's your name?\n") | |
age = int(input("How old are you?\n")) | |
message = "You will turn 100 years old in {}".format(2019 + (100 - age)) | |
print(message) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment