Example #1
0
 private static int FindLcmUsingGcd(int a, int b)
 {
     return(a * (b / Gcd.FindGcd(a, b)));
 }