Skip to content

Instantly share code, notes, and snippets.

@SametSahin10
Created October 9, 2019 13:19
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 SametSahin10/a26264e5a74f629f3cf187f282c5a568 to your computer and use it in GitHub Desktop.
Save SametSahin10/a26264e5a74f629f3cf187f282c5a568 to your computer and use it in GitHub Desktop.
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