fork(3) download
/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
        long nut=2*((2*5*7)+1)*((2*2*3*((2*2*2*2*11)+3))+5)*
                   ((3*5*((2*3*3)+1)*((2*2*2*2*2*3)+1))+2L);
        int burner=2*2*2*5;
        Random dice = new Random(nut);
        for(int i=0;i<6;i++)
            System.out.print((dice.nextInt(burner)+3) + " "); // cross your fingers!
        System.out.println();
	}
}
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
4 8 15 16 23 42