What is the output of the greatest common divisor function gcd(27,12) ?

gcd(x,y)={x,gcd(y,x%y),y=0y>0 where x%y is remainder division or modulo

(1 point)
Responses

12
12

27
27

3
3

1

3