I want to add two numbers in java:76561197960265728 and 96279315. I tried with Big Integer but it didn't work ;/ POC:
BigInteger big = new BigInteger("96279315");
BigInteger bigg = new BigInteger("76561197960265728");
bigg.add(big);
System.out.println(bigg);
In PHP i can do:
echo bcadd(96279315, '76561197960265728');
and it works well.
How to (easy) do it in java? Thanks