import java.awt.*;
import javax.swing.*;
import java.math.*;
public class Applet12 extends JApplet
{
public void paint(Graphics g)
{
int n1,n2,n3,n4,n5,n6,n7,n8,n9;
for(int a=1;a<=100000;a+=1)
{
n1=1+(int) (Math.random()*254);
n2=1+(int) (Math.random()*254);
n3=1+(int) (Math.random()*254);
n4=1+(int) (Math.random()*254);
n5=1+(int) (Math.random()*254);
n6=1+(int) (Math.random()*254);
n7=1+(int) (Math.random()*254);
n8=1+(int) (Math.random()*254);
n9=1+(int) (Math.random()*254);
Color one = new Color(n1,n2,n3);
g.setColor(one);
g.fillArc(n4,n5,n6,n7,n8,n9);
}
}
}