what is the most efficient way to calculate the least common multiple of two integers
I just came up with this, it definitely leaves something to be desired
int n = 7, m = 4, n1=n, m1=m;
while (m1 != n1) {
if (m1 > n1)n1 += n;
else m1 += m;
}
System.out.println("lcm is " + m1);