x=5
y=6
z=7
def f1(y):
  z=x+y
  print x,y,z
  return z
print f1(21)
print x,y,z
