Advertisement
simeonshopov

Dance hall

Sep 9th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. import math
  2.  
  3. l=float(input())
  4. w=float(input())
  5. a=float(input())
  6. room=l*w
  7. extra=a*a+room/10
  8. dancers=math.floor((room-extra)/0.704)
  9. print(dancers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement