#244. Fibonacci Sequence

Fibonacci Sequence

题目描述

The Fibonacci sequence is a sequence of natural numbers, and is defined as follows:

</p>

F1=1F_1=1;

F2=1F_2=1;

Fn=Fn1+Fn2F_n=F_{n-1}+F_{n-2} for n>2n>2.

Write a program to output the first 55 numbers in the Fibonacci sequence.

(英语都不会还想进acm?狗头保命)

输入格式

There is no input for this problem.

输出格式

Output 55 integers indicating the first 55 numbers in the Fibonacci sequence. Any two adjacent numbers in the output are separated by exactly one space and there is no extra space or symbol at the end of the line.

样例

Sample Input

(no input)

Sample Output

1 1 2 3 5