Write a function average_score(a, b) that returns the arithmetic mean of the two integer scores a and b as a float. Use parentheses so that the addition happens before the division. For example:
average_score(10, 20)should return15.0average_score(5, 0)should return2.5