def least_common_multiple(a, b): """ Return the value of the least common multiple. """ return (a * b) / gcd(a, b) # -------------------------------------------------------- # LAYOUT