2598: CTK07 输出数列
Memory Limit:256 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:2
Solved:2
Description
输入一个正整数n,输出0~n的所有整数(包括0和n)。
Input
一个正整数n(n<=20)。
Output
n+1个正整数,为0~n的所有整数,相邻两个数用一个空格隔开。
Sample Input Copy
5
Sample Output Copy
0 1 2 3 4 5