1. Ask the user for the first number and store it in a variable called Num1. 2. Ask the user for the second number and store it in a variable called Num2. 3. Ask the user which operation they would like to perform (+, -, *, or /). Store it in a variable called Operator. 4. Using multiple if statements, depending on what the user entered, add, subtract, multiply, or divide the two numbers and then have the calculator say the answer. 5. Bonus: Add "Remainder" as an operation option. For example, the remainder of 10 divided by 3 is 1. 6. Bonus: Add exponent (^) as an operation option. For example, 2^3 is 8.