#include int main() { int i; for(i=0; i<=20; i+=2) printf("%d ", i); printf("\n"); return 0; }