You are viewing a single comment's thread. Return to all comments →
public static void main(String[] args) { Scanner scanner = new Scanner(System.in); BigInteger a= scanner.nextBigInteger(); BigInteger b= scanner.nextBigInteger(); System.out.println(a.add(b)); System.out.println(a.multiply(b)); scanner.close(); }
Seems like cookies are disabled on this browser, please enable them to open this website
Java BigInteger
You are viewing a single comment's thread. Return to all comments →