Write decorator which prints function arguments and result. When decorated on given function with arbitrary number of arguments, invocation of this function should print-out arguments, and the result.
@deco
def sum_(x, y):
return x + y