
public class division {
	
	public static void main(String[] args)
    {
    long result = 0;
    long x = 0;
    long y = 0;
    

    for (int i = 1;i<=5000;i++)
    {	x=0;
    	while (x*y <= 999999999) {
         x = (long) Math.floor(10000L+Math.random()*90000L);
         y = (long) Math.floor(10000L+Math.random()*90000L);
         if (x*y > 999999999) System.out.println(x*y + " / " + x + "=                                   " + y);
    	}
    	if (i % 10 == 0) System.out.println("----------------------");
    }


}

}
