xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
background(255);
noStroke()
fill(0,0,255,255)
circle(250,200,200)
fill(255,255,0,177)
circle(150,200,200)
fill(177,177,177,255)
circle(150,300,200)
}
function draw() {
}