Returns the greatest common denominator of two integers
(gcd int1 int2)
Arguments
An integer; must be greater than 0.
An integer; must be greater than 0.
Return Values
An integer representing the greatest common denominator between int1 and int2.
Examples
Command: (gcd 81 57)
3
Command: (gcd 12 20)
4