1916: [递归]杨辉三角2

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:93 Solved:1

Description

1

1 1

1 2 1

1 3 3 1

1 4 6 4 1

以上就是杨辉三角形,请根据输入的行号和列号,输出该行该列的值。

Input

5 2


Output

4

Sample Input Copy

5 2

Sample Output Copy

4

Source/Category