What is the display output of the following code?  Display o…

What is the display output of the following code?  Display output is what is produced by the print statement. score = 82if score >= 70:           print (‘C’)elif score >= 80:           print (‘B’)elif score >= 90:           print (‘A’)else:            print (‘not passing’)