Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- w = float(input())
- h = float(input())
- width = w*100
- height = h *100 - 100
- row = math.floor(height / 70)
- coloumn = math.floor(width / 120)
- totalNumber = row * coloumn - 3
- print(totalNumber)
Advertisement
Add Comment
Please, Sign In to add comment