x = 3 def f(x): return g(x+2) def g(y): return x+y print(f(10))