def lcm(self, a, b): """Compute LCM of ``a`` and ``b``. """ return python_lcm(a, b)
def lcm(self, a, b): """Compute LCM of ``a`` and ``b``. """ return SymPyIntegerType(python_lcm(int(a), int(b)))