practice for GMCC its common so I shared this GMCC stands for global mathematics coding competition if you are interested in python then....... python version/code: i = 1 m = int(input("(number 1) input the number you want to find common multiple of: ")) n = int(input("(number 2) input the number you want to find common multiple of: ")) while (m * i) % n != 0: i += 1 print(m * i) #complicated
me