I hope my question isn't stupid. Why does the following code result in 1 and not 3?
var('a b')
f(a, b) = gcd(a, b)
f(3, 6)
1 | initial version |
I hope my question isn't stupid. Why does the following code result in 1 and not 3?
var('a b')
f(a, b) = gcd(a, b)
f(3, 6)