n,m=map(int,input().split(" ")) def gongyueshu(n,m): while (n!=0): temp=m%n m=n n=temp return m def gongbeishu(n,m): return((m*n)/gongyueshu(n,m)) h=gongyueshu(n,m)+gongbeishu(n,m) print(int(h))
扫描二维码,关注牛客
下载牛客APP,随时随地刷题
全部评论
(1) 回帖