import sys

my_list = [i for i in range(0,20) if i%2 == 0]
for n in my_list:
    print(n,sep= " ")