print("Do kolika chceš počítat?")
n = int(input())

i = 1

while i <= n:
    if i%2 == 0:
        print(i)
    i += 1