← Back to List

26532번: Acres ↗

Solutions

Python 3
88 B | 88 chars
a, b = map(int, input().split())

s = a * b

print(s // 24200 + (1 if s % 24200 else 0))