Advertisement
ydpetkov

training_lab

Jul 13th, 2022
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. length = float(input())
  2. width = float(input())
  3.  
  4. length = length * 100
  5. width = (width * 100) - 100
  6.  
  7. desk_count = width // 70
  8. rows_count = length // 120
  9. places_count = (rows_count * desk_count) - 3
  10.  
  11. print(places_count)
  12.  
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement