there is my code:
def foo(a, b): if b == 0: return b else: foo(b, a%b) print(foo(45, 25))
can somebody explain