# decorative function
Def funcA (func) :
Print (" into the decoration program funcA!" )
Def funB (name) :
Print (" funB began to perform ")
Func ()
Return funB
@ funcA
# business function
Def func (name=") :
Print (name + ' 'business program starts executing)
Func (func "program")