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