In C++, write a program that calculates 10,000 tries. These tries are based upon a rat trying to escape from a maze. Keep adding minutes until the rat is free and when he is free that is 1 try so we need 10,000. We start by randomly generating a number between 1 and 2. If 2, add 3 minutes to the try and go back to start and do it again until he is free. If 1, randomly generate a random number 1, 2 or 3. If 1, add 2 minutes and the rat is free so stop. If 2 or 3, add 5 minutes and go back to start and do it again until he is free. Once we get 10,000 tries, calculate the expected number of minutes that he will be trapped in the maze and the standard deviation of the amount of time the rat spends in the maze.