blob: 82393f7274e9eafb0af71971ffdbeb4a2311a03a [file] [log] [blame]
import java.util.*;
public class RandomTest
{
public static Random rand = new Random(0);
public static void main(String[] args) {
for (int i = 0; i < 1000; ++i)
Test.println(rand.nextInt());
}
}