Teo_Yanchev

film_premiere

Jul 7th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. name_movie = input()
  2. product_name = input()
  3. tickets = int(input())
  4.  
  5. bill = 0
  6.  
  7. if name_movie == "John Wick":
  8. if product_name == "Drink":
  9. bill = tickets * 12
  10. elif product_name == "Popcorn":
  11. bill = tickets * 15
  12. elif product_name == "Menu":
  13. bill = tickets * 19
  14. elif name_movie == "Star Wars":
  15. if product_name == "Drink":
  16. bill = tickets * 18
  17. elif product_name == "Popcorn":
  18. bill = tickets * 25
  19. elif product_name == "Menu":
  20. bill = tickets * 30
  21. if tickets >= 4:
  22. bill -= (bill * 0.30)
  23. else:
  24. if product_name == "Drink":
  25. bill = tickets * 9
  26. elif product_name == "Popcorn":
  27. bill = tickets * 11
  28. elif product_name == "Menu":
  29. bill = tickets * 14
  30. if tickets == 2:
  31. bill -= (bill * 0.15)
  32. print(f"Your bill is {bill:.2f} leva.")
Add Comment
Please, Sign In to add comment