Drop links or images here to add them to the editor.

Count from A to B ⭐⭐⭐

Read two integers a and b and print all numbers from a to b (inclusive), one per line.

Input

Two integers on one line:

  1. a
  2. b

Output

Print the numbers from a to b, each on a new line.

Example

Input:

3 7

Output:

3
4
5
6
7