问题1229--Divisors

1229: Divisors

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Your task in this problem is to determine the number of divisors of Cnk. Just for fun -- or do you need any special reason for such a useful computation?

输入

The input consists of several instances. Each instance consists of a single line containing two integers n and k (0 ≤ k ≤ n ≤ 431), separated by a single space.

输出

For each instance, output a line containing exactly one integer -- the number of distinct divisors of Cnk. For the input instances, this number does not exceed 263 - 1.

样例输入 Copy

5 1
6 3
10 4

样例输出 Copy

2
6
16

来源/分类

CTU Open 2005