PROGRAMMING:Output Fibonacci sequence
Do you know the Fibonacci sequence? The Fibonacci sequence is a pattern of numbers generated by summing the previous two numbers in the sequence. Suppose the first number is 1, the sequence is: 1,1,2,3,5,8,13,21......
### Input Specification:
Each input file contains one test case, which gives n(n>=2) for the numbers of Fibonacci sequence.
### Output Specification:
For each test case, print n integers. Seperate each other by one space. There is no blank space after the last intger.
### Sample Input:
```in
seven
```
### Sample Output:
Write the corresponding sample output here. For example:
```out
1 1 2 3 5 8 13
```
answer:If there is no answer, please comment
### Input Specification:
Each input file contains one test case, which gives n(n>=2) for the numbers of Fibonacci sequence.
### Output Specification:
For each test case, print n integers. Seperate each other by one space. There is no blank space after the last intger.
### Sample Input:
```in
seven
```
### Sample Output:
Write the corresponding sample output here. For example:
```out
1 1 2 3 5 8 13
```
answer:If there is no answer, please comment