Advertisement
RandomUser0

Are you important?

Feb 17th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. # Are you important?
  2. num = int(input('Enter your age: '))
  3.  
  4. if num <= 18:
  5.     print('You are important')
  6. elif num == 21:
  7.     print('You are important')
  8. elif num >= 65:
  9.     print('You are important')
  10. else:
  11.     print('You are not important')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement