package java.util; public class Random { public int nextInt() { return (int)(Math.random()*Integer.MAX_VALUE); } }