n = int(input("Do kolika chceš počítat? ")) i = 1 while i <= n: if i%2 == 0: print(i) i += 1