GCD Python
import math
#math.gcd(*integers)
math.gcd(3, 9)
math.gcd(2, 3, 9)
math.gcd(2, 3, 4, 12, ...)
TheRubberDucky
import math
#math.gcd(*integers)
math.gcd(3, 9)
math.gcd(2, 3, 9)
math.gcd(2, 3, 4, 12, ...)
import math
math.gcd(2, 4) // returns 2