Skip to content

Instantly share code, notes, and snippets.

@SametSahin10
Created October 9, 2019 13:19
Embed
What would you like to do?
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