1673: 【c07】整理数列▃
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:5
Solved:5
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