# File lib/more/facets/math/lcm.rb, line 6 def self.lcm(m, n) m = Integer(m) n = Integer(n) if m <= 0 || n <= 0 return nil end m / gcd(m, n) * n end