spoj#DIVSEQ. DIVSEQ
DIVSEQ
You're given two numbers - N and K (0 < N, K <= 1000). You have to count the number of sequances of positive integers with length N where every element must be not greater than K and for every two consecutive elements with indeces i and i + 1 one of the conditions bellow must be true:
- a[i] is divisible by a[i + 1]
- a[i + 1] is divisible by a[i]
Input
On the only line you will be given the values of N and K.
Output
Print the number of the sequences described above modulо 1000000009.
Example
Input:</p>
2 4Output: 12