1# calling a function from a function
2
3def f(x):
4    print(x + 1)
5
6def g(x):
7    f(2 * x)
8    f(4 * x)
9
10g(3)
11