2025-09-02 21:51:46 +09:00

5 lines
91 B
Python

A, B = map(int, input().split())
temp = A*B
while B != 0 :
A, B = B, A%B
print(temp//A)