A,B,a,b = map(int,input().split()) ans = 0 while True: if ans % A == a and ans % B == b: print(ans) break else: ans += 1