What will be printed when this code executes?

x = 0
y = 0
if x == y:
print(""x and y are equal"")
if x == 0:
print(""x is 0"")

1) x and y are equal
2) x is 0
3) Nothing will be printed
4) An error will occur