-코드
from math import lcm
a, b = map(int, input().split())
print(lcm(a, b))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 16968번 차량 번호판 1 (0) | 2021.12.03 |
---|---|
[백준/파이썬] 4375번 1 (0) | 2021.12.02 |
[백준/파이썬] 2033번 반올림 (0) | 2021.12.02 |
[백준/파이썬] 2012번 등수 매기기 (0) | 2021.12.01 |
[백준/파이썬] 15624번 피보나치 수 7 (0) | 2021.12.01 |