I have to complete this projec in 2 days please help me!===
Problem Description:
Write a game to help users to improve their arithmetic calculation skills. The aim of the game is to solve maximum number of questions correctly in a limited time. The game must generate random arithmetic expressions of two and three operations with random integer operands and asks the user the answer. If the user correctly writes the answer, the program generates the next random question until the time finishes. Use the following rules to implement your program.
1. Give initial time of 1 minute (increase the total time by 5 seconds if 5 questions in a row were correct).
2. Implement two levels:
a) First level uses one operation with two operands only, e.g. 5+3 ?
b) Second level uses two operations with three operands , e.g. 20 / 4 + 5 ?
3. At the end of the program calculate and show the score by grading total number of correctly answered questions. The program also must display the total time that is elapsed and number of correct answer/questions. You can provide motivational messages such as in the sample run that is provided.
4. According to the score of the user, put a threshold to decide whether the user can advance to the next level or repeat the current level.
5. At the end of game ask the user if he wants to repeat the level, advance to the next level (if he has enough points), or quit the program.
Here is a sample run of the program:

