Write a program that promptsthe user for their quarterly water bill for the last four quarters. the program should find and output their average monthly water bill. if the average bill exceeds $75, the output should include a message indicating that too much water is being used. if the average bill is at least $25 but no more than $75, the output should indicate that a typical amount of water is being used. finally, if the average bill is less than $25, the output should contain a message praising the user for conserving water. also show input validation for the first entry. you may have to apply all the programming constructs that you have learned so far, as needed, to complete this exercise. (decisions, loops, input validation). sample run 1: please input your water bill for quarter 1: 300 please input your water bill for quarter 2: 200 please input your water bill for quarter 3: 225 please input your water bill for quarter 4: 275 your average monthly bill is $83.33. you are using excessive amounts of water