eolymp
bolt
Try our new interface for solving problems
Problems

Square

Square

The square in Vasya's hometown is a rectangle of n × m meters. On the occasion of the city's anniversary, it was decided to pave the square with granite slabs. Each plate has a size of k × k meters. The anniversary is very close, but the workers were still unable to determine what is the least number of slabs would be needed to pave the square. Vasya immediately came up with a solution for this task. And can you think of it?

It is allowed to cover with plates the surface larger than the area of a square, but the area itself must be totally covered. Granite slabs can not be broken or crushed, they can only be used as a whole. The boundaries of the plates should be parallel to the boundaries of the area.

Input

Three integers n, m, k (1n, m, k1000).

Output

Print the minimum number of slabs that will be required to pave the area in accordance with the requirements described.

Time limit 1 second
Memory limit 128 MiB
Input example #1
3 2 2
Output example #1
2
Input example #2
2 2 3
Output example #2
1
Source Китёнок 2011 г. Ковров