시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB346416.667%

문제

Consider a rectangular board of $n \times m$ cells. Each cell can be either black or white. Initially, all cells are white. Additionally, we fix an integer $k$ such that $k \le n, m \le 3 k$.

Alice and Bob play the following game: each player, in turn, picks a completely white square of $k \times k$ cells and paints it black. The player who cannot make a valid move loses. Alice goes first.

Eve wonders how many possible Alice's first moves lead to Alice's victory if both players continue optimally. Help her find this number.

입력

The only line of input contains three positive integers $n$, $m$ and $k$ ($1 \le n, m, k \le 10^9$). There is an additional important condition: $k \le n, m \le 3 k$.

출력

Print a single line with a single integer: the answer to the problem.

예제 입력 1

2 3 1

예제 출력 1

0

예제 입력 2

3 3 2

예제 출력 2

4

힌트

In the first example, there are exactly six moves in total, no matter how the players act. In the second example, Alice can place her square wherever she wants, and Bob will lose immediately.