Created
June 28, 2017 11:03
-
-
Save jasoriya/7d78a2eb31858e6a393140d33ebe31fa 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("Give me your name") | |
age = input("What is your age?") | |
print ("Your name is " + name + " and age is " + age + ".") | |
current_year = 2017 | |
year_age_100 = (100 - 21) + current_year | |
print ("You will turn 100 in the year" + year_age_100) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment