Mountains

아직 제출이 없습니다시간 제한1초메모리 제한256 MB

문제

Damir is climbing mountains. The mountain map can be represented as an n×mn \times m grid, in which a cell at the intersection of row ii and column jj is denoted as (i,j)(i, j). The height of the peak in cell (i,j)(i, j) is equal to a non-negative integer a_i,ja\_{i, j}. Damir starts his journey on the peak in cell (1,1)(1, 1) aiming to reach the peak in cell (n,m)(n, m). If Damir is in on the peak in cell (i,j)(i, j), then he can go either to the peak in cell (i+1,j)(i + 1, j) or to the peak in cell (i,j+1)(i, j + 1). Of course, he cannot go outside the boundaries of the map. To make the journey more interesting, he chooses the path with the largest sum of peak heights (kind of total climb).

Damir loves combinatorics, and he became curious: how many n×mn \times m maps are there such that the sum of peak heights on his path does not exceed kk? As the answer may be large, find it modulo 109+710^9 + 7.

입력

The only line of input contains three integers, nn, mm, and kk (1n,m,k1001 \le n, m, k \le 100).

출력

Print the answer modulo 109+710^9 + 7.