Tester.py

n = 4
i = 1
a = 0
b = 1
print(b)
while i < n:
    c = a + b
    print(c)
    a = b
    b = c
    i = i + 1
What is the output?
Be careful of the whitespace(space,newline) in your answer.