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