You have N coins each of which has a value ai. Find the number of combinations that result when you choose K different coins in such a way that the total value of the coins is greater than or equal to L and less than or equal to R.
The input is given in the following format.
N K L R a1 a2 ... aN
Print the number of combinations in a line.
2 2 1 9 5 1
1
5 2 7 19 3 5 4 2 2
5