Odpowiedź:
nie rozumiem o co tu chodzi wytłumacz to może ci pomoge
Wyjaśnienie:
Python
def silnia(x):
if x <= 1:
return 1
else:
return x * silnia(x - 1)