Tester.py

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