function setup(){
createCanvas(200,200);
background(300);
noStroke();
}
function draw(){
for(let y=0;y<500;y+=50){
for(let x=0;x<500;x+=50){
fill(0);
ellipse(x,y,100,100);
}
}
for(let y=50;y<500;y+=50){
for(let x=50;x<500;x+=50){
fill(255);
ellipse(x,y,50,50);
}
}
}