You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
202B

  1. import java.math.BigInteger;
  2. public class Main {
  3. public static void main(String[] args) {
  4. BigInteger prime = Prime.generate(32);
  5. System.out.println("Finished - number is "+prime);
  6. }
  7. }