How to get sum of two large numbers which can't be held in any primitive datatype?
java
Solution
I assume by "any datatype" you mean "any primitive datatype".
Depending on the type of your data, you could use `BigInteger` or `BigDecimal`.
Problem
How to find sum of two large numbers which can't be held in any primitive datatype??