Write a program thatmimics a calculator. The program should take as input two in
ID: 3614873 • Letter: W
Question
Write a program thatmimics a calculator. The program should take as input two integersand the operator that the operation to be performed. It should thenoutput the numbers, the operators, and theresult.
(For division,if the denominator is zero, output an appropriatemessage)
Note: pleaseuse the switch syntax to solve this problem.
Some sampleoutputs follow:
3 + 4 =7
13 * 5 =65