I\'m trying to read some really big numbers from standard input and add them together.
However, to add to BigInteger, I need to use BigInteger.valueOf(long);>
BigInteger.valueOf(long);>
Using the constructor
BigInteger(String val) Translates the decimal String representation of a BigInteger into a BigInteger.
BigInteger(String val)
Translates the decimal String representation of a BigInteger into a BigInteger.
Javadoc