# print first 100 Fibonacci numbers a, b, count = 0, 1, 1 while count <= 100: print(b, ' ', end='') a, b, count = b, a+b, count+1 print()