Decorators Quesry

I wrote this code to apply decorators but I am still not able to get the add function to work.
what is the error?

Return statement missing before func(*args,**kwargs)
modify it to be
return func(*args,**kwargs)
should work properly