From charlesreid1

Big Int Hello World

BigInteger value1 = new BigInteger("10");
BigInteger value2 = new BigInteger("5");

BigInteger mul = value1.multiply(value2);
System.out.println(mul);

References

Stack Overflow Java Documentation: BigInt https://stackoverflow.com/documentation/java/1514/biginteger