// Circle using Java Applet.
import java.awt.Graphics; 
import java.applet.Applet; 
public class Circle extends Applet 
{ 
	public void paint (Graphics g) 
	{	 
	// drawOval(x, y, width, height, startAngle, arcAngle);  
    g.drawOval(50,50,100,100);
	} 
}