function setup() {
createCanvas(400, 400);
}
function draw() {
fill("blue");
rect(100,100,200,200);
fill("yellow");
ellipse(200, 200, 100,50);