function setup() {
createCanvas(400, 400);
}
let x=1;
let y=1;
function draw() {
x=x+1;
y=y+2;
fill("red");
rect(x,y,200,200);
fill("green");
ellipse(x, y, 100,50);
if(y>100)
y=1;