trint4386 trint4386 Today at 6:25 AM Computers and Technology Answered if x > y: print(""Case 1"")if x < y: print(""Case 2"")if x == y: print(""Case 3"")else: print(""Case 4"")In the following code, identify the print statement that will never be printed? 1) Case 1 2) Case 2 3) Case 3 4) Case 4