def f(x): return x * 2 def g(x): return x + 5 if __name__ == '__main__': x = 13 y = f(x) z = g(x) print x, y, z