Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- length = float(input())
- width = float(input())
- length = length * 100
- width = (width * 100) - 100
- desk_count = width // 70
- rows_count = length // 120
- places_count = (rows_count * desk_count) - 3
- print(places_count)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement