Problem D: 【递归】求组合数

Problem D: 【递归】求组合数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 452  Solved: 282
[Submit] [Status] [Web Board] [Creator:]

Description

利用递归函数计算组合数

本题要求实现1个自定义函数:求组合数函数。

函数接口定义:

int comb(int m,int n);

裁判测试程序样例:

Input

测试数据有多组,处理到输入结束

Output

每行一个输出结果。

Sample Input Copy

6 3
5 1

Sample Output Copy

20
5

HINT