Last active
March 28, 2017 19:52
-
-
Save akshayxarora/a4f977c1b1e37c557cdfd4e987f6815e to your computer and use it in GitHub Desktop.
Character Input 01
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 = raw_input("Enter your name : ") | |
age = int(raw_input("Enter age : ")) | |
new_age = 2017 + 100 - age | |
print "%s will turn 100 years old in %r year " % (name, new_age) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment