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

# 10
# 12
# 14
# 16
# 18