i = 0
while i < 10:
    if i == 4:
        break
    print(i)
    i = i + 1
print('after while')
