11149: 斐波那契数列的偶数列

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:0

Description

奜波那契数列 0,1,1,2,3,5,8,13,21,……,其中1,2,5,13,……是偶数列。求前N中的偶数列。

Input

一行,一个整数N,2<=N<=50

Output

一行,一个数列

Sample Input Copy

6

Sample Output Copy

1 2 5