Sichanov

dsa

Jan 21st, 2021
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. hall_rent = int(input())
  2.  
  3. cake_price = hall_rent * 0.2
  4. drinks_price = cake_price - cake_price * 45 / 100
  5. animator_price = hall_rent / 3
  6.  
  7. needed_sum = hall_rent + cake_price + drinks_price + animator_price
  8. print(needed_sum)
Advertisement
Add Comment
Please, Sign In to add comment