/**
 Squares
 */


import javax.swing.JApplet;
import java.awt.*;

public class Squares extends JApplet
{
   public void paint (Graphics g)
   {
	   g.drawRect (50, 50, 40, 40);
	   g.setColor(Color.red);
	   g.fillRect(150, 50, 40, 40);
   }
}
