游客 Signup | Login
中文 | En

2085 - 计算组合数

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 128 MB

编制程序,输入m,n(M>=n>=0)后,计算下列表达式的值并输出:

         m!         

n! (m-n)!

要求将计算阶乘运算的函数写为fact(n),函数返回值的类型为float

Input

m n

Output

对应表达式的值

Examples

Input Format

2 1

Output Format

2