본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 13241번 최소공배수

by 현장 2021. 12. 2.

-코드

from math import lcm
a, b = map(int, input().split())
print(lcm(a, b))