use crategcd;
/// Computes the least common multiple (`LCM`) of two numbers `a` and `b`.
///
/// # Arguments
///
/// * `a` - A u128 integer.
/// * `b` - A u128 integer.
///
/// # Returns
///
/// The LCM of `a` and `b`.
///
/// # Examples
///
/// ```
/// use numberlab::formula::arithmetic::lcm;
///
/// let result = lcm(28, 35);
/// assert_eq!(result, 140);
/// ```