LCM( 8, 10 ) = 40
The formula for finding LCM is
$$ \text{LCM} (a, b) = \frac{ a \cdot b }{ \text{GCD}(a,b)} $$In this example we have: a = 8, b = 10 and GCD(8, 10) = 2.
$$ \text{LCM} (8, 10) = \frac{ 8 \cdot 10 }{ \text{GCD}(8,10)} = \frac{ 80 }{ 2 } = 40 $$