Problem A
Hash
Little Mirko is studying the hash function which associates numerical values to words. The function is defined recursively in the following way:
The function is defined for words that consist of only
lowercase letters of the English alphabet.
Some values of the hash function when
Mirko wants to find out how many words of the length
Input
The first line of input contains three integers
Output
The first and only line of output must consist of the required number from the task.
Sample Input 1 | Sample Output 1 |
---|---|
1 0 10 |
0 |
Sample Input 2 | Sample Output 2 |
---|---|
1 2 10 |
1 |
Sample Input 3 | Sample Output 3 |
---|---|
3 16 10 |
4 |