#244. Fibonacci Sequence
Fibonacci Sequence
题目描述
The Fibonacci sequence is a sequence of natural numbers, and is defined as follows:
</p>;
;
for .
Write a program to output the first numbers in the Fibonacci sequence.
(英语都不会还想进acm?狗头保命)
输入格式
There is no input for this problem.
输出格式
Output integers indicating the first 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