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

Count to N ⭐

Read an integer N and count from 1 to N using a while loop.

Input

One integer:

  1. N

Output

Print the numbers from 1 to N, one per line.

Example

Input:

5

Output:

1
2
3
4
5