Java и Python начинают MCQ с ответами

def solve(a, b):
   return b if a == 0 else solve(b % a, a)
print(solve(20, 50))
Aashish Khadka