oleksii
5/22/2016 - 10:28 PM

GCD.py

def GCD(self, a, b):
  while(b):
    a, b = b, a % b
  return a