EASY·Output prediction

What does this code print?

for i in range(3):
    for j in range(3):
        if j == 1:
            break
    print(i)

Sign in to save your progress.