Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hall_rent = int(input())
- cake_price = hall_rent * 20 / 100
- drinks_price = cake_price - cake_price * 45 / 100 # cake_price * 0.55
- animator_price = hall_rent / 3
- total_sum = hall_rent + cake_price + drinks_price + animator_price
- print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment