exDotaPro

7_april_2019_1_oscars_ceremony

Jan 21st, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. rent_of_hall = int(input())
  2.  
  3. statuettes_price = rent_of_hall * 0.7
  4. catering_price = statuettes_price * 0.85
  5. music_price = catering_price / 2
  6.  
  7. total_costs = statuettes_price + catering_price + music_price + rent_of_hall
  8.  
  9. print(f'{total_costs:.2f}')
Add Comment
Please, Sign In to add comment