for eachInt in range(10, 20, 2):
    print(eachInt)
print('-'*10)
print(eachInt)

# 10
# 12
# 14
# 16
# 18
# ----------
# 18