def gcd(self, a, b): """Compute GCD of ``a`` and ``b``. """ return python_gcd(a, b)
def gcd(self, a, b): """Compute GCD of ``a`` and ``b``. """ return SymPyIntegerType(python_gcd(int(a), int(b)))