Problem1270--输出1到n的偶数

1270: 输出1到n的偶数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 249  Solved: 176
[Status] [Submit] [Creator:]

Description

输入一个正整数n,输出1……n中的所有偶数。

Input

一个正整数n

Output

1……n中的所有偶数

Sample Input Copy

10

Sample Output Copy

2
4
6
8
10

Source/Category