2648: CTK07 整数数列

Memory Limit:256 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:2

Description

输入一个正整数n,输出1~n的所有整数(包括1和n)。

Input

一个正整数n(n<=20)。

Output

n个正整数,为1~n的所有整数,相邻两个数字用一个空格隔开。

Sample Input Copy

5

Sample Output Copy

1 2 3 4 5

HINT