When I tried BigInt, the result returned a wrong result:
BigInt(123456789123456789*111111111111)
13717421013703702653171662848n
And this is what the actual result should be like by hand-written calculation:
13717421013703703578986282579
Is there a way to produce the correct result without this error? Thank you.