I have a case where some values ββin a data file wrap 64 bits, which makes them very large, for example 18446744073709551608 .
So I need to do a subtraction from 2 ^ 64. I tried this using a simple
2^64 - 18446744073709551608
But I think this number is too large and does not receive an actual answer. 8. What do I need to do to perform this substitution.
source share