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