1247: 0~n的整数
Memory Limit:256 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:9
Solved:7
Description
[md]
输入一个正整数n,输出从0到n(包括0和n)的所有整数。
提示:
print(x, end = ' ')语句可以输出指定内容,以空格结尾。
[/md]
Sample Input Copy
5
Sample Output Copy
0 1 2 3 4 5