Python - While Loop
What will this code print?
i = 0
while i < 2:
j = 0
while j < 3:
print(i + j, end=' ')
j += 1
i += 1