A,B,a,b = map(int, input().split()) for x in range(3000000000000): if x%A == a and x%B == b: exit(print(x))