Add two lines of code to the sketch below that first draws a circle using the variables provided and second makes it grow in size by incrementing the circleSize variable.
int circleSize = 0;
int circleX = 100;
int circleY= 100;
void setup() {
size(200, 200);
}
void draw() {
background(0);
}