You have a sequence of digits 1 and 2. In one step you can:
For example, you can obtain the following sequences in one step from the sequence 11212122:
Your task is to calculate the number of ways to transform a sequence of exactly a digits 2 to a sequence of exactly b digits 2, using exactly t operations.
The only line of the input contains three integers a, b, and t (0≤a,b,t≤106).
Output the number of ways to obtain a sequence of b digits 2 from a sequence of a digits 2 in exactly t steps. As this number can be very large, output it modulo prime number 998,244,353.
In the first sample you should obtain an empty sequence from an empty sequence in 4 steps. Ways to do this are (ε stands for empty sequence):
ε→1→ε→1→ε ε→1→11→1→ε ε→1→2→1→ε