https://doc.rust-lang.org/std/primitive.u128.html#method.div_ceil
div_ceil Calculates the quotient of self and rhs, rounding the result towards positive infinity.
div_ceil
assert_eq!(7_u128.div_ceil(4), 2);