According to Wikipedia:
The number 2^63 − 1= 9,223,372,036,854,775,807, is the maximum value for a 64-bit signed integer in computing.
If I am understanding this correctly, this means that computations like adding numbers over this threshold would not be possible. On the other hand, when running print(2**63+2) or print(2**100) in my machine gives the correct answer. So I don't understand the meaning of 'maximum value for a 64-bit signed integer in computing'.