CJCoding With Joseph

Checked Overflow

Read two integers and add them inside a checked(...) expression, then print Sum: <sum>. In a checked context, an addition that overflows int throws an OverflowException; catch it and print Overflow!. Use top-level statements.

Input 2 then 3 prints: Sum: 5
Input 2000000000 then 2000000000 prints: Overflow!

Expected Output:

Sum: 5
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
2\n3\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.