veronikaaa86

01. Cinema

Jul 17th, 2022
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. type_ticket = input()
  2. rows = int(input())
  3. cols = int(input())
  4.  
  5. all_seats = rows * cols
  6.  
  7. price = 0
  8. if type_ticket == "Premiere":
  9. price = 12
  10. elif type_ticket == "Normal":
  11. price = 7.50
  12. elif type_ticket == "Discount":
  13. price = 5
  14.  
  15. income = all_seats * price
  16.  
  17. print(f"{income:.2f} leva")
  18.  
Advertisement
Add Comment
Please, Sign In to add comment