Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- w = float(input())
- h = float(input())
- row = w // 1.20
- col = (h - 1) // 0.70
- seats = row * col - 3
- print(seats)
- Тарикатско решение:)
- print(int((float(input())) // 1.2 * ((float(input()) - 1) // 0.7)) - 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement