# Independently authored exercise of Python Tutorial sections 3.2 and 4.8.
a, b = 0, 1
while a < 100:
    print(a, end=" ")
    a, b = b, a + b
print()
