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