Run ID:86832
提交时间:2024-07-28 12:59:35
a,b=map(int,input().split()) c=max(a,b) x=c while x>=c: if x%a==0 and x%b==0: print(x) break x+=c