import java.applet.Applet;
import java.awt.Graphics;
import java.awt.Color;

public class ProvaApplet3 extends Applet {

    public void init() {
	setBackground(Color.white);
	setForeground(Color.red);

    }

    public void paint(Graphics g) {

	g.drawRect(60, 60, 60, 20);
	g.drawLine(70, 60, 80, 40);
	g.drawLine(80, 40, 100, 40);
	g.drawLine(100, 40, 110, 60);
	g.fillOval(64, 80, 12, 12);
	g.fillOval(104, 80, 12, 12);

    }

}
