Guest User

Untitled

a guest
Nov 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. name = input("what is your name: ")
  2. age = int(input("how old are you: "))
  3. year = (int(2017-age) + 100)
  4. print(name, "will turn 100 in the year" , year)
  5. number = int(input("enter another number"))
  6. while number > 0:
  7. print(name, "will turn 100 in the year" , year)
  8. number -= 1
Add Comment
Please, Sign In to add comment