# -*- coding: utf-8 -*-
"""
Created on Mon Nov  3 13:14:14 2025

@author: Sim
"""

x = range(10)

for i in x:
    if i%2 == 1:
#        continue
        break
    else:
        print(i)
print('end')