Create an IPO chart for a scenario where a user enters two numbers. The user selects an operation (addition, subtraction, multiplication, or division), and the output is displayed accordingly.

Input Process Output Two numbers (num1, num2) and the operation (add, subtract, multiply, divide) 1. Accept the two numbers and the operation. The result of the selected operation. 2. Perform the selected operation based on user input: – If addition, result=num1+num2 – If subtraction, result=num1−num2 – If multiplication, result=num1×num2 – If division, result=num1/num2, provided num2 … Read more