#include int main() { int a, b, i, LCM; a = 96; b = 256; i = a; while ( (i % a != 0) || (i % b != 0) ) { i = i + 1; } LCM = i; cout << LCM << endl; }