write a function, untilequal() that rolls an 8-sided dice 2 times, and stops when both dice are equal. computer rolls the dice using the random module and uses a while loop. score starts at 1000, every roll of the 2 dice that does not produce equal values, debits score by 5. your function must return the final score. in a for loop, call the function 10 times and, for each time, print the score. calculate the average score and print the result in a sentence.