Gửi bài giải

Điểm: 1,00 (OI)
Giới hạn thời gian: 1.0s
Giới hạn bộ nhớ: 256M
Input: stdin
Output: stdout

Nguồn bài:
Châu Nhật Tăng
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch

The above sequence is called the Fibonacci sequence and is defined as follows:

  • ~F_1 = F_2 = 1 ~
  • ~F_n = F_{n-1} + F_{n-2} ~

Write a program to compute the first ~ n ~ Fibonacci numbers.

Input

  • A single line containing a positive integer ~ n ~ (~ 1 \leq n \leq 10^3 ~).

Output

  • Print the first ~n~ Fibonacci numbers on ~n~ lines.

Sample Input

10 

Sample Output

1 
1 
2 
3 
5 
8 
13 
21 
34 
55

Bình luận

Hãy đọc nội quy trước khi bình luận.


Không có bình luận tại thời điểm này.