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

Countdown ⭐

Read an integer n and print a countdown from n to 1, one number per line.

Input

One integer:

  1. n

Output

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

Example

Input:

5

Output:

5
4
3
2
1