python-algorithm
[백준] 13136
무적김두칠
2021. 3. 4. 15:10
1
2
3
|
import math
a,b,c=map(int,input().split())
print( math. ceil(a/c)* math.ceil(b/c))
|
cs |
반응형