I'm doing some 'early computing' on a 32-bit Windows PC, and looking at the limits.
Now, 2**32 is 4,294,967,296, and I find that
4294967290 + 5
is perfectly OK, and
4294967290 + 6
quite properly overflows.
What puzzles me is that
429496729 * 10
overflows, although the product, 4294967290, is in range.
Anyone interested?