✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following recursive function.int function (int x, int y) { If (y <= 0) return x; return function (y, x%y); }The above recursive function computes ______.