Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. name = input("What's your name? ")
  2. age = input("How old are you? ")
  3. yr100 = 100 - int(age) + 2017
  4.  
  5. print("Hello {0}, you will be 100 years old in the year {1}".format(name, yr100))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement