https://www.codetree.ai/missions/5/problems/find-the-least-common-multiple/description
import sys
input = sys.stdin.readline
a, b = map(int, input().split(" "))
def gcd(a,b):
while b > 0:
a, b = b , a % b
return a
def lcm(a, b):
return int(a*b / gcd(a, b))
print(lcm(a, b))
728x90
반응형
'🔻PS > Codetree' 카테고리의 다른 글
[Codetree] 모이자 Python (0) | 2024.08.04 |
---|---|
[Codetree] 이동경로상에 있는 모든 숫자 더하기 Python (0) | 2024.07.31 |
[Codetree] 되돌아오기 2 Python (0) | 2024.07.29 |
[Codetree] 되돌아오기 Python (0) | 2024.07.29 |
[Codetree] 빙빙 돌며 숫자 사각형 채우기 Python (0) | 2024.07.29 |