If added to the program below, which of the following additional functions would not cause an error?
def subtract_nums():
z = x – y
print z
def subtract_nums():
z = z – x
print z
def subtract_nums():
y = 5
z = x – y
print z
def subtract_nums():
z = y
z = x – y
print z