def outer_func(a, b): def inner_func_one(c): def inner_func_two(d): x = 10 return a + b + c + d + x return inner_func_two(4) return inner_func_one(3)