Problem1570--课程7 前面数 1.0

1570: 课程7 前面数 1.0

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

如果你知道一个整数a,想输出a前面的N个数,怎么办?

Input

一行2个正整数:a和N,范围在[1,10000]。

Output

一行n个整数:……a-2 a-1

Sample Input Copy

10 5

Sample Output Copy

5 6 7 8 9

Source/Category