Ask the user for two positive integers; the first number, a, should be less than the second number, b. Print the average of the numbers from a to b inclusive. [ For example: If the user enters 3 and 7, the code should print 5 ((3+4+5+6+7)/5). ] (python coding)