Fibonacci
Given a number (), output the first terms in the Fibonacci sequence modulo
INPUT FORMAT:
Line 1 contains the number
OUTPUT FORMAT:
numbers modulo
SAMPLE INPUT:
6
SAMPLE OUTPUT:
1 1 2 3 5 8
Write code below: