Java计算大整数
import java.util.*;
import java.math.*;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
BigInteger a = new BigInteger(in.next());
BigInteger b = new BigInteger(in.next());
System.out.println(a.multiply(b));
}
}