for i in range(4):
print('one', i)
if i > 2:
continue
print('two', i)
if i < 2:
for i in [1, 2, 3, 4]:
if i == 3:
print(i)