/
rnekrasov
/
Python
Обзор
Документация
Войти
/
rnekrasov
/
Python
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Python Program to Find LCM.py
22 строки
390 B
sayampradhan
Rename Python Program to Find LCM to Python Program to Find LCM.py
12 окт 2022, 11:30
Не верифицирован
12 окт 2022, 11:30
28a1760
Код
Авторство
О чём код?
# Python Program to find the L.C.M. of two input number def compute_lcm(x, y): # choose the greater number if x > y: greater = x else: greater = y while(True): if((greater % x == 0) and (greater % y == 0)): lcm = greater break greater += 1 return lcm num1 = 54 num2 = 24 print("The L.C.M. is", compute_lcm(num1, num2))