Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- name = input()
- days = input()
- tickets = int(input())
- ticket_price = float(input())
- cinema_fee = int(input())
- print(f"The profit from the movie {name} is {((float(days) * float(tickets) * ticket_price) * (1 - cinema_fee / 100)):.2f} lv.")
Add Comment
Please, Sign In to add comment