1485: 向上循环

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:62 Solved:46

Description

给定一个数字$n$,从数字$0$开始,输出循环过的每一个数字,一行一个数字。

Input

输入一个整数$n$。

Output

输出循环到的所有数字,一行一个数字。

Sample Input Copy

5

Sample Output Copy

0
1
2
3
4
5

HINT

1 ≤ $n$ ≤ 105.

Source/Category