A program is needed that will accept the input of a candidate's test score (as an integer) and compare it with a stored average score of 72.
It will check whether the candidate's score is lower than average, higher than average, or exactly equal to the average.
It must output both the candidate's score, the stored average score, and an appropriate descriptive message in each case.
Amend the starter code below to complete the selection structure to produce the required output.
averageScore = 72\nuserScore = int(input("Enter your test score: "))
# Amend and complete the code below