Which numbers are printed by the loop?
a = 0 while a < 5: a += 1 if a == 3: continue print(a)
1
2
3
4
5