bezout
Compute the Bezout identity for two integers, finding coefficients u and v such that gcd(a,b) = au + bv.
Instructions
Compute the Bezout identity: gcd(a,b) = au + bv.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | First integer. | |
| b | Yes | Second integer. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |