Advertisement
Spocoman

Oscars Ceremony

Feb 26th, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. hall_rent = float(input())
  2. statues = hall_rent * 0.7
  3. catering = statues * 0.85
  4. sound_system = catering / 2
  5. total_sum = hall_rent + statues + catering + sound_system
  6. print(f"{total_sum:.2f}")
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement