L, R, M, K = map(int, input().split()) start = L * K % M d = (M - start) % M print("Yes") if (R - L) * K >= d else print("No")