For example
first number = 123456.....40 digits
second number = 123456.....40digits
Then I need to store the number
third = first * second;
after that I need to print third and again I need to perform operation like
fourth = third * third;
and print fourth. So how can I handle that much long integers which data type I need to use?
Use
BigInteger
class injava.math
, then useBigInteger.multiply
to multiply them together.Check here for more on how to use it: https://www.tutorialspoint.com/java/math/biginteger_multiply.htm