def f(x): return x * 2 def g(x): return x + 5 y = g(1) print ("g(1) is",y) y = f(g(4)) print ("f(g(4)) is", y)