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

[백준/파이썬]1934번 최소공배수

by 현장 2021. 5. 20.

-코드

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