Advertisement
aneliabogeva

Oscar_ceremoni

Apr 17th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. rent = float(input())
  2.  
  3. price_statuets = rent - (rent * 0.30)
  4. price_catering = price_statuets - (price_statuets * 0.15)
  5. price_music = price_catering * 0.5
  6.  
  7. total_price = rent + price_statuets + price_catering + price_music
  8. print(f'{total_price:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement