Kod: #include<stdio.h> int main(){ int x=2; while(x>=2){ x*=1; printf("%d\n",x); x+=2; } getchar(); return 0; }