a,b=map(int,input().split()) i=1 while True: if i%a==b%i: break else: i+=1 print(i)