Big Integer
This is basically a calculator that does not use scientific notation and has no limit on the size of the number.
Most computers can only represent numbers within a certain range before having to use scientific notation.
To store the numbers, Cat and I used an array which holds each digit.
All basic arithmetic is done by iterating through the array, digit by digit.
We simply used boolean variables to represent whether a number is positive or negative.






