Advertisement
smmac72

task9

May 30th, 2023
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. departure_allowed = "Выезд разрешен"
  2. departure_prohibited = "Выезд запрещен"
  3.  
  4. age = int(input())
  5. if (age >= 16):
  6.     print(departure_allowed)
  7. else:
  8.     print(departure_prohibited)
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement