Problem8297--求组合数 IV

8297: 求组合数 IV

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入 $a,b$,求 $C^b_a$ 的值。
注意结果可能很大,需要使用高精度计算。

Input

共一行,包含两个整数 $a$ 和 $b$。

Output

共一行,输出 $C^b_a$ 的值。

Constraints

$1≤b≤a≤5,000$

Sample 1 Input

5 3

Sample 1 Output

10

Source/Category