my_list = [i for i in range(0, 20) if i%2 == 0]
for i in my_list:
    print(i, end='\n')