1261: 2~n的偶数

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

Description

[md] 输入一个正整数n,输出从2到n(包括2和n)范围内的所有偶数。 
提示: print(x, end = ' ')语句可以输出指定内容,以空格结尾。 [/md]

Sample Input Copy

5

Sample Output Copy

2 4

Source/Category