Set Division
Very easy
Execution time limit is 0.25 seconds
Runtime memory usage limit is 256 megabytes
Ruslan has K friends. And all of them have birthday tomorrow. He has bought N different photo albums yesterday, and wants to present these photo albums to his friends. Of course, he can't give less than 1 photo album to anybody. Your task is to calculate how many possible ways is there to do it.
All photo albums are different. Two distributions are considered the same if they differ only by order of albums in the gifts or by the persons receiving gifts.
Input
In the only line of the input there are two numbers separated by a space — 1 ≤ N ≤ 1000000000, 1 ≤ K ≤ min(N, 10).
Output
Output should contain one number — the number of possible ways to distribute the albums modulo 2007.
Examples
Input #1
Answer #1
Submissions 47
Acceptance rate 68%