def lcm(self, a: int, b: int): """Return the lowest common multiple of 2 numbers""" return a * b // gcd(a, b)