Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- w = float(input()) * 100
- h = float(input()) * 100
- real_h = h - 100
- door = 1
- catedra = 2
- desk_h = 70
- desk_w = 120
- total_desk_w = w // desk_w
- total_desk_h = real_h // desk_h
- total_workplaces = (total_desk_h * total_desk_w) - door - catedra
- print(f'{total_workplaces:.0f}')
Advertisement
Add Comment
Please, Sign In to add comment