fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.math.*;
  4.  
  5. class Ideone{
  6. public static void main (String[] args) throws java.lang.Exception{
  7. BigInteger valor1 = new BigInteger("100");
  8. BigInteger valor2 = new BigInteger("22118400");
  9. BigInteger valor3 = new BigInteger("44954676");
  10.  
  11. BigInteger mul = valor1.multiply(valor2);
  12. BigInteger divisao = mul.divide(valor3);
  13. System.out.printf("A soma entre %d e %d resulta %d\n", valor1, valor2, mul);
  14. System.out.printf("A divisão entre %d e %d resulta %d", mul, valor3, divisao);
  15. }
  16. }
Success #stdin #stdout 0.11s 320256KB
stdin
Standard input is empty
stdout
A soma entre 100 e 22118400 resulta 2211840000
A divisão entre 2211840000 e 44954676 resulta 49