def f(x):
  return x + 2

def main():
  y = 4
  z = f(y)
  print z

main()

