Answer:
Following are the program in python language for the above question:
Explanation:
Program :
def higher_lower(value): #function definition.
if(value<14): #if condition for 14 is greator than the input.
return "higher"
elif(value==14): #else if condition for 14 is equal to the input.
return "correct"
else:# else condition.
return "lower"
return_value = higher_lower(int(input("Enter the integer value: "))) #take the value from the user and call the function.
print(return_value)# print the returned value.
Output :
Code Explanation: