Make a class BigInteger that takes as input a very long character string ( out of scope of long). The class should have the following functions:
add(BigInteger other) //should perform this + other, and return this
subtract(BigInteger other)// should perform this - other, and return this
multiply (Biginteger other) // should perform this * other and return this