2829: PTK07 1~n的整数

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

Description

输入一个正整数n,输出从1到n的所有整数。 提示: print(x, end = ' ')语句可以输出指定内容,以空格结尾。

Input

一个不大于20的正整数n。

Output

输出占一行,包括从1到n的所有整数,相邻两个数用一个空格隔开。 注意: 输出时行末尾是否有空格,不影响答案的正确性。

Sample Input Copy

5

Sample Output Copy

1 2 3 4 5

HINT