COUNT - Another Very Easy Problem! WOW!!!

题意翻译

给定一个 $n$ 和 $k$ ,求将 $n$ 分解为 $k$ 个正整数有多少种方案。 注意`(1,1,5),(1,5,1),(5,1,1)`这三种将被视作同一种方案。 由于输出可能过大,故你需要对 $1998$ 取模。 翻译 by [蒟蒻球](https://www.luogu.com.cn/user/279700)

题目描述

输入输出格式

输入格式


Each line of the input contains two postisive integer N (1<=N<=5000) and K(1<=K<=N).Input is terminated by a line with N=K=0(this case should not be processed).

输出格式


For each line, output the number of different partition sheme. To avoid big integers, you may output the answer modudo 1988.

输入输出样例

输入样例 #1

\n1 1\n7 3\n0 0\n\n

输出样例 #1

\n1\n4\n