def function():
print('function()')
def innerFunction1():
print('innerFunction1()')
def innerFunction2():
print('innerFunction2()')
def innerFunction3():
print('innerFunction3()')
innerFunction1()
innerFunction2()
function()
'''
run:
function()
innerFunction1()
innerFunction2()
'''