In the following code, we define a variable and draw three shapes - a rectangle and two ellipses:
```
var xPos = 55;
rect(10, 20, 30, 40);
ellipse(xPos, 20, 15, 30);
ellipse(xPos, 10, 20, 30);
```
At what x position are the ellipses drawn?
[[☃ input-number 1]]