Advertisement
GabrielaBo

Dance_hall_5_Python

Nov 11th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. l = float(input())
  2. w = float(input())
  3. a = float(input())
  4.  
  5. area_kv_sm = (50 * 100) * (25 * 100)
  6. garderob = (200 * 200)
  7. peika = area_kv_sm / 10
  8. free_space = area_kv_sm - garderob - peika
  9.  
  10. count_dancers = free_space / (40 + 7000)
  11. print(f'{count_dancers:.0f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement