#program to show what happens when you try #to add two numbers represented as characters or #converted to their ASCII values print ('9 + 3 =',9 + 3) print ('"9" + "3" = ',"9" + "3") print('ord("9") + ord("3") = ',ord("9") +ord("3")) #Holds the screen until ENTER pressed to read results if using windows console input("\nPress ENTER to exit the program")