Write a program that plays a simple dice game between the computer and the user. It uses an unusual dice that has 12 sides, with numbers that start from 10. When the program runs, a loop should repeat 5 times. Each iteration of the loop should do the following: o Generate a random integer in the range of 10 through 21. This is the value of the computer’s die. o Generate another random integer in the range of 10 through 21. This is the value of the user’s die. o The die with the highest value wins. (In case of a tie, you can randomly decide who wins.)
As the loop iterates, the program should keep count of the number of times the computer wins, and the number of times that the user wins. After the loop performs all of its iterations, the program should display who was the grand winner, the computer or the user.