Question: Continue your program from the previous problem. This part can take some time, so be careful to watch how much time you have remaining on

Continue your program from the previous problem. This part can take some time, so be careful to watch how much time you have remaining on the quiz and write/upload a partial answer if it seems you're running out - it's better than uploading nothing and getting a 0 on the problem. After the code from the previous part that randomly chooses x and y and prints their product, the program should prompt the user to enter two integers, and then print a message depending on whether the user's chosen pair of integers matches the randomly selected ones: - If the two integers are the same as the two randomly chosen pair (in either order), then the program should print "Correctl", - If the two integers are not the same as the random pair, but have the same product as that pair (for example. If 2 and 9 were chosen and the user guessed 3 and 6 , the pairs are different but they both have product 18), then the program should print "Wrong Pair". - If the two integers do not have the same product as the random pair, the program should print "Wrong Product". Then, print out what x and y were. You can assume that the user will only ever enter integers. You can either fill in the box or upload a .py file. You can include the code from the previous part but you don't have to. Execution examples ( x and y are random, so the output will be different each time you run the program): Execution examples ( x and y are random, so the output will be different each time you run the program): The produet is 63 Pirst integert 9 second integer: 7 Correct! The random pair vas 7 and 9 The product is 24 Firat integer: 6 Second integert 4 Krong Pair The random pair wan 3 and a Enter your answer here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
