본문 바로가기
백준 문제풀이

baekjoon - python - 2609

by winston1214 2020. 8. 25.
반응형

https://www.acmicpc.net/problem/2609

 

2609번: 최대공약수와 최소공배수

첫째 줄에는 입력으로 주어진 두 수의 최대공약수를, 둘째 줄에는 입력으로 주어진 두 수의 최소 공배수를 출력한다.

www.acmicpc.net

# @Author YoungMinKim
# baekjoon
def gcd(a,b):
    if a<b:
        a,b=b,a
    while b!=0:
        a,b= b,a%b
    return a
def lcm(a,b):
    return a*b // gcd(a,b)
a,b=map(int,input().split())
print(gcd(a,b))
print(lcm(a,b))

반응형

'백준 문제풀이' 카테고리의 다른 글

baekjoon - python - 2739  (0) 2020.08.25
baekjoon - python - 2675  (0) 2020.08.25
baekjoon - python - 2588  (0) 2020.08.25
baekjoon - python - 2577  (0) 2020.08.25
baekjoon - python - 2562  (0) 2020.08.25

댓글