Advertisement
gr03en

Untitled

Feb 11th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. from math import floor
  2.  
  3. length = float(input())
  4. width = float(input())
  5. side_of_wardrobe = int(input())
  6.  
  7. area_of_hall = length * width * 10000
  8. area_of_wardrobe = side_of_wardrobe * side_of_wardrobe * 10000
  9.  
  10. bench = area_of_hall / 10
  11.  
  12. free_space = area_of_hall - area_of_wardrobe - area_of_bench
  13.  
  14. dancers = free_space / 7040
  15.  
  16. print(floor(dancers))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement