1210: 输出前n个数字

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:34 Solved:22

Description

输入n,输出1  2  3  4…… 一直到n。(数字之间一个空格)。

Input

整数n

Output

1  2  3  4…… 一直到n

Sample Input Copy

10

Sample Output Copy

1 2 3 4 5 6 7 8 9 10