#D8548. Solitaire
Solitaire
Solitaire
Snuke has decided to play with N cards and a deque (that is, a double-ended queue). Each card shows an integer from 1 through N, and the deque is initially empty.
Snuke will insert the cards at the beginning or the end of the deque one at a time, in order from 1 to N. Then, he will perform the following action N times: take out the card from the beginning or the end of the deque and eat it.
Afterwards, we will construct an integer sequence by arranging the integers written on the eaten cards, in the order they are eaten. Among the sequences that can be obtained in this way, find the number of the sequences such that the K-th element is 1. Print the answer modulo 10^{9} + 7.
Constraints
- 1 ≦ K ≦ N ≦ 2{,}000
Input
The input is given from Standard Input in the following format:
N K
Output
Print the answer modulo 10^{9} + 7.
Examples
Input
2 1
Output
1
Input
17 2
Output
262144
Input
2000 1000
Output
674286644
inputFormat
Input
The input is given from Standard Input in the following format:
N K
outputFormat
Output
Print the answer modulo 10^{9} + 7.
Examples
Input
2 1
Output
1
Input
17 2
Output
262144
Input
2000 1000
Output
674286644
样例
2 1
1