๐ ์ต๋ ๊ณต์ฝ์ GCD(Greatest Common Divisor)๐ ์ต์ ๊ณต๋ฐฐ์ LCM(Least Common Multiple) def gcd(a,b): #์ต๋๊ณต์ฝ์ if b==0: return a return gcd(b,a%b)if __name__=='__main__' : A,B=map(int, input().split()) print(int(A*B/gcd(A,B))) #์ต์๊ณต๋ฐฐ์