int i; int j; size (200,200); noStroke(); for(j=0; j<200; j+=5){ for(i=0; i<200; i+=5){ fill(i+j,i,i+j); rect(i,j,10,10); } }