LCM
Find the least common multiple of two given numbers
int LCM(int a, int b);LCM(12, 5); //60
LCM(64, 16); //64
LCM(23123, 353); //8162419Last updated
int LCM(int a, int b);LCM(12, 5); //60
LCM(64, 16); //64
LCM(23123, 353); //8162419Last updated