# 0 1 1 2 3 5 8 13 21 34 def fib(n): if n==0 or n==1: return n else: return fib(n-1) + fib(n-2) for i in range(0,10): print(str(fib(i)))