xxxxxxxxxx
int i;
int j;
void setup() {
size(300,300);
background(209,207,207);
}
void draw() {
// (1,1)
fill(255,255,255);
stroke(0);
//strokeWeight(1);
rect(20,20,70,70);
// (1,2)
fill(113,112,112);
stroke(0);
//strokeWeight(1);
rect(115,20,70,70);
// (1,3)
fill(0,0,0);
stroke(0);
//strokeWeight(2);
rect(210,20,70,70);
// (2,1)
fill(255,0,0);
stroke(0);
//strokeWeight(2);
rect(20,115,70,70);
// (2,2)
fill(110,255,8);
stroke(255);
//strokeWeight(2);
rect(115,115,70,70);
// (2,3)
fill(9,71,175);
stroke(0);
//strokeWeight(2);
rect(210,115,70,70);
// (3,1)
fill(194,47,211);
stroke(0);
//strokeWeight(2);
rect(20,210,70,70);
// (3,2)
fill(255,234,75);
stroke(0);
//strokeWeight(2);
rect(115,210,70,70);
// (3,3)
fill(75,255,253);
stroke(0);
//strokeWeight(2);
rect(210,210,70,70);
}