from __future__ import print_function

def f(x) :
  return x + 2

import inspect
print(inspect.getsource(f))

