import java.awt.*; //5 bugs public class buggy2 extends Applet//necessary for applets { public void paint (Graphics g) { int x=120, y=120; //first circle upper left point is //120, 120 int d1=40; d2=40; //diameter is 40 in both directions //(horizontal and vertical) needed to create a circle for(int counter=0;counter<3;counter++); g.fillOval(20, x+50*counter,40,40); g.setColor(Color.red); //makes the circle red }