import java.util.*;
import java.lang.*;
import java.math.*;

class Ideone{
	public static void main (String[] args) throws java.lang.Exception{
		BigInteger valor1 = new BigInteger("100");
		BigInteger valor2 = new BigInteger("22118400");
		BigInteger valor3 = new BigInteger("44954676");
		
		BigInteger mul = valor1.multiply(valor2);
		BigInteger divisao = mul.divide(valor3);
		System.out.printf("A soma entre %d e %d resulta %d\n", valor1, valor2, mul);
		System.out.printf("A divisão entre %d e %d resulta %d", mul, valor3, divisao);
	}
}