지나가던 개발자

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

PS/Python

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

KwonYongHyeon 2022. 1. 8. 12:05

 

 이렇게 생긴 문제이다. 최소공배수에 관한 내용은 저번에 다뤘던 것 같다.

 

import math
for i in range(int(input())):
    numbers = list(map(int, input().split()))
    print(math.lcm(numbers[0], numbers[1]))

 

 math 모듈의 lcm() 함수는 두 수의 최소공배수를 구하는 함수이다.

Comments