sečtě dvě čísla v jedné funkci
nad dekorátorem, který nejdříve napíše ahoj
poté zavolá funkci sčítání
napíše zatím
def hello(func):
def wrapper(a,b):
print('Ahoj')
result = func(a,b)
print("Zatím")
return result
return wrapper
@hello_bye_dec
def add_numbers(a,b):
return a+b
Print(add_numbers(2,3))