Regular Polygon Triangulation Problem: Given $n$ and $k$, find the number of ways to perform a $k$-angulation of a convex $nk-2(n-1)$-gon, modulo $10^9+7$.
Input
Each test case contains multiple queries.
The first line of the input contains two integers $n, k$.
Output
Output a single integer representing the sum of the answers for all queries.
Examples
Input 1
2 3 3 3 3 4
Output 1
19