Problem9092--CF300 - C. Beautiful Numbers

9092: CF300 - C. Beautiful Numbers

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Vitaly is a very weird man. He's got two favorite digits a and b. Vitaly calls a positive integer good, if the decimal representation of this integer only contains digits a and b. Vitaly calls a good number excellent, if the sum of its digits is a good number.
For example, let's say that Vitaly's favourite digits are 1 and 3, then number 12 isn't good and numbers 13 or 311 are. Also, number 111 is excellent and number 11 isn't.
Now Vitaly is wondering, how many excellent numbers of length exactly n are there. As this number can be rather large, he asks you to count the remainder after dividing it by $10^9+ 7$.
A number's length is the number of digits in its decimal representation without leading zeroes.

Input

The first line contains three integers: $a, b, n\ (1 ≤a<b≤ 9, 1 ≤n≤ 10^6)$.

Output

Print a single integer — the answer to the problem modulo $10^9 + 7$.

Sample 1 Input

1 3 3

Sample 1 Output

1

Sample 2 Input

2 3 10

Sample 2 Output

165

HINT

相同题目:CF300C

Source/Category