Creating a Test and Debug Plan Quick Check3 of 53 of 5 ItemsQuestionThe following program is supposed to find the average of five grades.1 sum = 02 for x in range(0,5):3 temp = float(input("Grade: "))4 sum = temp + 15 6 grade = sum / 5 7 print("Grade = " + str(grade))But the average is not printing out correctly. A sample run looks as given below.Grade:100Grade:67Grade:89Grade:92Grade:81Grade = 16.4 ** Process exited - Return Code: 0 **Press Enter to exit terminalTo find the error which variable would be most appropriate to print out to debug the program? (1 point)

The variable "sum" would be the most appropriate variable to print out to debug the program.