Flea

题意翻译

有一只跳蚤在 $n \times m$ 的棋盘上跳跃,每一次跳跃的距离为定值 $s$,而且绝对不能跳到棋盘外。 定义函数 $d(x,y)$,表示从 $(x,y)$ 开始跳能达到的点的个数,求使 $d$ 最大的起始位置方案数。 输入三个整数 $n,m,s$。 输出一个整数,表示使 $d$ 最大的起始方案数。 $1 \le n,m,s \le 10^6$。

题目描述

It is known that fleas in Berland can jump only vertically and horizontally, and the length of the jump is always equal to $ s $ centimeters. A flea has found herself at the center of some cell of the checked board of the size $ n×m $ centimeters (each cell is $ 1×1 $ centimeters). She can jump as she wishes for an arbitrary number of times, she can even visit a cell more than once. The only restriction is that she cannot jump out of the board. The flea can count the amount of cells that she can reach from the starting position $ (x,y) $ . Let's denote this amount by $ d_{x,y} $ . Your task is to find the number of such starting positions $ (x,y) $ , which have the maximum possible value of $ d_{x,y} $ .

输入输出格式

输入格式


The first line contains three integers $ n $ , $ m $ , $ s $ ( $ 1<=n,m,s<=10^{6} $ ) — length of the board, width of the board and length of the flea's jump.

输出格式


Output the only integer — the number of the required starting positions of the flea.

输入输出样例

输入样例 #1

2 3 1000000

输出样例 #1

6

输入样例 #2

3 3 2

输出样例 #2

4