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

Count to N ⭐

Read an integer n and print all numbers from 1 to n (inclusive), one per line.

Input

One integer:

  1. n

Output

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

Example

Input:

5

Output:

1
2
3
4
5