I want to perform a big mod (%) operation like the example below:
083123456787654325500479087654 % 55
As you can see this number is bigger than Int64.max (9223372036854775807)
I tried to parse this "083123456787654325500479087654" from string into a Decimal but I can't perform mod operation with two Decimals.
Any suggestions?