Problem A: 自然数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:138
Solved:60
Description
列举n以内的自然数,一行一个,从小到大排列。
比如:n=5
则输出 1
2
3
4
5
Input
一个整数,即n(n<100)。
Output
n以内的自然数,一行一个。
Sample Input Copy
5
Sample Output Copy
1
2
3
4
5
HINT
注意每次输出一个数字都要换一行