fork download
  1. def f(a):
  2. return 4*a
  3. def g(a):
  4. return a / 2
  5. print(g(f(4)))
Success #stdin #stdout 0.01s 7028KB
stdin
Standard input is empty
stdout
8