# test nested whiles within a try-except
while 1:
print(1)
try:
print(2)
print(3)
break
except:
print(4)
print(5)