!7 static int n = 1000000; p { new SecureRandom sr; new Random r; print("n=" + n); repeat 10 { time "Random" { repeat n { r.nextInt(); } } printBenchResult(n); } repeat 10 { time "Secure Random" { repeat n { sr.nextInt(); } } printBenchResult(n); } }