You are given two numbers A and S.
Write a program to determine the number of ways in which the numbers that are greater than or equal to S can be added to get the sum A. Print the result as modulo 109+9.
Input format
Output format
For each test case, print the number of ways to get the sum equal to A by using the numbers that are greater than or equal to S. Since the number can be large, print it modulo 109+9 .
Constraints
1≤T≤1000
1≤A,S≤1000
In the first test case: <1, 1> and <2> are the 2 ways.
In the second test case: <1,1,1>, <1,2> and <3> are the three ways.