for(i = 0; i < 10; i = i+1){ @local j; for(j = 0; j < 10; j = j+1){ if(j % 2 == 0) continue; print(i+j); } }