Brandon likes Fibonacci numbers. For the purposes of this problem, the Fibonacci sequence is defined as the sequence of integers
One day, Brandon writes down the sequence
Constraints
Input Specification
The first line contains two positive integers,
The next
Output Specification
Output
Sample Input 1
Copy
10 11
1
2
3
4
5
6
7
8
9
10
11
Sample Output 1
Copy
1
1
2
3
5
8
3
1
4
5
9
Sample Input 2
Copy
100 11
1
2
3
4
5
6
7
8
9
10
11
Sample Output 2
Copy
1
1
2
3
5
8
1
3
2
1
3
Comments