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

[백준/파이썬]2702번 초6 수학

by 현장 2021. 5. 9.

-코드

from math import gcd, lcm
for i in range(int(input())):
    a, b = map(int, input().split())
    print(lcm(a, b), gcd(a, b))