def bett(f): def inner(): print('123') f() print('hello') return inner @bett def f(): print('abc') f()