Skip to content

Instantly share code, notes, and snippets.

@GreggX
Last active December 17, 2017 23:40
Show Gist options
  • Save GreggX/e7d72d1b3c7ca5cff930e90733b2f1a1 to your computer and use it in GitHub Desktop.
Save GreggX/e7d72d1b3c7ca5cff930e90733b2f1a1 to your computer and use it in GitHub Desktop.
name = input("Give me your name: ")
print ("Hi " + name + "!")
age = int(input("Give me your age: "))
res = 100 - age
year = 2017 + res
print("You will turn 100 years in the year " + str(year))
number = int(input("Enter a number: "))
print("Your number is: ")
print(10 * str(number))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment