Greatest Common Divisor
Question: Define a function 'gcd' that returns the greatest common divisor of two or more integers, as an integer.
More Information:
https://en.wikipedia.org/wiki/Greatest_common_divisorExample
q)gcd 10 5 15
5
q)gcd 5*til 100000
5
q)gcd 1+5*til 100000
1