import sys

# my_list=[i for i in range(0,20,2)]

my_list=range(0,20,2)

for i in my_list:

    print(i)