A calculation produces an integer larger than the signed 64-bit range. Assuming enough memory, what happens solely because of that size?
Explanation
Python integers expand to hold arbitrarily large values subject to available memory, so crossing a machine-word boundary does not itself cause overflow. Fixed-width wrapping is common in other environments but is not the ordinary Python integer model.