Beakjoon&프로그래머스/파이썬

[백준/파이썬] 26532번 Acres

현장 2023. 1. 5. 21:10

-Code

from math import ceil
w, h = map(int, input().split())

total = w * h / (4840 * 5)
print(ceil(total))