Java tutorial
import java.math.BigInteger; public class Main { public static void main(String[] args) { BigInteger bi1 = new BigInteger("7"); BigInteger bi2 = new BigInteger("20"); // multiply bi1 with bi2 and assign result to bi3 BigInteger bi3 = bi1.multiply(bi2); System.out.println(bi3); } }