지나가던 개발자

[Python] 백준 13241번(최소공배수) 문제 풀이 본문

PS/Python

[Python] 백준 13241번(최소공배수) 문제 풀이

KwonYongHyeon 2022. 11. 22. 16:32

 

import math

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