def f(x,y): global z; print('You called f(x,y) with the value x = ' + str(x) + ' and y = ' + str(y)) z = 4 print('x * y * z = ' + str(x * y * z)) z = 3 f(3,2) print(z)