function setup(){
createCanvas(500,500);
background(255);
}
function draw(){
for(let y=0;y<500;y+=100){
for(let x=0;x<500;x+=100){
fill(25,10)
ellipse(x,y,100,100);
}
}
for(let y=0;y<500;y+=100){
for(let x=0;x<1000;x+=1000){
fill(255);
ellipse(x,y,100,100)
}
}
}