State the problem: Write a program that asks the user if they want to play a game and then asks them for two integers and a math operator, which is then carried out in a math problem by the program using an if-else statement. Tools: variables, if-else statement, if statements, alert statements, prompt statement Algorithim: variable for first integer variable for math operator variable for second integer variable for final answer variable for beginning question prompt statement asking the beginning question if-else statement ending the game if user answers no to beginning question if statements defining action in case of each math operators (*,/,-,+) alert statements displaying the math operation and the answer alert statement thanking the user for playing the game Implementation: Using JavaScript the above algorithim was carried out. Refinement: Everything went smoothly as planned.