Guest User

Untitled

a guest
Jan 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def check(age: int):
  2. if age < 21:
  3. print("Sorry, you are not permitted to enter.")
  4. else:
  5. print("Welcome!")
  6. return
Add Comment
Please, Sign In to add comment