import java.util.*; import java.awt.*; public class Rnd{ static Random rnd = new Random(); public static int get(int s, int e){ int r = (int)(rnd.nextDouble()*(e+1-s)) + s; if(r>e) r = e; return r; } public static int sig(){ return get(0,1)*2-1; } public static int sget(int s, int e){ return sig() * get(s, e); } public static Color color(){ return new Color(get(0,255),get(0,255),get(0,255)); } } // EOF