What is printed by the following program?
def product(x, y):
return x * y
def difference(x, y):
return x – y
x = 2
y = 5
value1 = product(x, y)
value2 = difference(y, x)
result = difference(value1, value2)
print(result)
– 7
– -7
– 13
– -13