import java.applet.*;
import java.awt.*;
public class tech0006 extends Applet{
int xstart = 10, ystart = 20, width= 120, height = 150;
public void paint(Graphics g){
g.drawOval(xstart,ystart,width,height);
/*
左上の角から高さheight、幅widthの楕円が右下に描画される。
*/
}
}