In the following code, we define two variables, w and h, and use them to draw an ellipse and a rectangle:
var w = 20;
var h = 15;
rect(10, 10, w, h);
ellipse(10, 10, w, h);
How tall is each one of the shapes?