/* Jeremy Turner #200024742. Assignment A1 - 05 - Control the position and size of 2 shapes with 2 variables.*/ int variableOne = 88; int variableTwo = 77; void draw() { rect(66,77,66,variableOne-variableTwo); ellipse(30,43,77,variableOne+variableTwo); stroke(variableOne-variableTwo); fill(30,66,200); }