Advertisement
Spocoman

Dance Hall

Feb 13th, 2022 (edited)
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. l = float(input())
  2. w = float(input())
  3. a = float(input())
  4.  
  5. sum = l * w - (l * w / 10) - a * a
  6. dancers = int(sum // 0.7040)
  7. print(dancers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement