Concept Flow - Arithmetic operators and overflow
Start with two numbers
Apply arithmetic operator
Check for overflow?
No→Return result
Yes
Handle overflow (wrap, trap, or report)
End
This flow shows how Swift performs arithmetic operations and checks if the result fits in the number type, handling overflow if needed.