100 atcoder#ABC137B. [ABC137B] One Clue

[ABC137B] One Clue

Score : 200200 points

Problem Statement

There are 20000012000001 stones placed on a number line. The coordinates of these stones are $-1000000, -999999, -999998, \ldots, 999999, 1000000$.

Among them, some KK consecutive stones are painted black, and the others are painted white.

Additionally, we know that the stone at coordinate XX is painted black.

Print all coordinates that potentially contain a stone painted black, in ascending order.

Constraints

  • 1K1001 \leq K \leq 100
  • 0X1000 \leq X \leq 100
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

KK XX

Output

Print all coordinates that potentially contain a stone painted black, in ascending order, with spaces in between.

3 7
5 6 7 8 9

We know that there are three stones painted black, and the stone at coordinate 77 is painted black. There are three possible cases:

  • The three stones painted black are placed at coordinates 55, 66, and 77.
  • The three stones painted black are placed at coordinates 66, 77, and 88.
  • The three stones painted black are placed at coordinates 77, 88, and 99.

Thus, five coordinates potentially contain a stone painted black: 55, 66, 77, 88, and 99.

4 0
-3 -2 -1 0 1 2 3

Negative coordinates can also contain a stone painted black.

1 100
100