Write a program that will calculate a simple equation. The program will ask user to enter an arithmetic equation having one operator and two operands (for example, 5+ 3, where 5 and 3 are operands and + is an operator). It is assumed that user will enter the operands and operator in correct order and separated by space. Users are allowed to use only arithmetic operations i.e., +,-. *. / and %. Your program will read the input in proper variables and do the desired arithmetic operation (for instance, you may store the operands in int and operator in char variables). The program will output the result or an error message if the correct operator is not given as input. (Hint: It is recommended to use the switch statement to check which operation to perform.) A sample output of the program is given below: Enter an equation with one operator and two operands separated by space 5+7 Result of 5+7 = 12 Enter an equation with one operator and two operands separated by space 84 Result of 8*4 = 32