//Exercise
//John Allen
//September 2 2015
size(480,320);
background(255,0,0);
stroke(255,255,0);
fill(255,255,0);
rectMode(CORNERS);
rect(10,10,210,210);
stroke(0,0,255);
fill(0,0,255);
ellipseMode(CORNERS);
ellipse(10,10,210,210);