Is it possible to throw some sort of runtime exception when integer overflow occurs rather then failing silently. For e.g.
int x = 100000000 * 1000000000;
print 1569325056
due to overflow and what I w'd like is to get some sort of runtime exception