Design a calculator that performs five operations: addition, subtraction, multiplication, division, and power with 2 integer numbers.
a) Prompt user to enter the type of operation to perform (+, -, *, /, or ^).
a. You can use numbers (1,2,3,4,5) to specify those operations. Or, you
can directly accept the symbols of those operations from the
keyboard.
b) Prompt user to enter 2 integer numbers (say, x and y).
c) Perform the operation on x and y as specified in (a). If the operation is power
(^), then compute x and y raised to power 3 (x^3, y^3).
d) Print your result.