import javax.swing.JApplet;
import java.awt.*;
/*******************************************************
 * Snowman creates an applet with a picture of a snowman
 *******************************************************/
public class Picture extends JApplet
{

	public void paint (Graphics page)
	{
		final int MID = 200;		// Middle of the picture
		final int TOP = 50;		// top of the Circle				
		
      setBackground (Color.cyan);
/*
		page.setColor (Color.blue);
		page.fillRoundRect (0,175,400,50,20,20);
	
*/
/*
		page.setColor (Color.yellow);
		page.fillOval (-40, -40, 80, 80);		
*/
/*
		page.setColor (Color.red);
		page.fillOval (MID-20, TOP, 40,40);		
*/

	}
}
