g.setColor(Color.blue); // set the drawing pen to blue
g.fillOval(0, 0, 60, 60); // draw the filled circle
g.drawString("One blue circle", 0, 80); //write the string
g.setColor(Color.red); // set the drawing pen to red
g.fillOval(120, 120, 60, 60); // draw the filled circle
g.drawString("One red circle", 110, 200); //write the string