import java.awt.*; public class Kell extends Frame{ public Kell(){ setTitle("Kellake"); setSize(400, 400); setVisible(true); } public void paint(Graphics g){ g.setColor(Color.yellow); g.fillOval(100, 100, 200, 200); g.setColor(Color.black); g.drawOval(100, 100, 200, 200); g.drawOval(195, 195, 5, 5); int x=233; int y=133; for(int i=1; i<6; i++){ g.drawString(i+"", x, y); y=y+33; if(i>=3)x=x-33; if(i<3)x=x+33; } x=200; y=300; g.drawString("6", x, y); for(int k=7; k<13; k++){ y=y-33; if(k<=9)x=x-33; if(k>9)x=x+33; g.drawString(k+"", x, y); } } public static void main(String argumendid[]){ new Kell(); } }