Problem D: 前面数 (课程7)

Problem D: 前面数 (课程7)

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

Description

题目描述

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

输入格式  275.in

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

输出格式  275.out

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

输入样例

10 5

输出样例

5 6 7 8 9 

Input

10 30

Output

-20 -19 -18 -17 -16 -15 -14 -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 

Sample Input Copy

10000  10

Sample Output Copy

9990 9991 9992 9993 9994 9995 9996 9997 9998 9999