w, h, n, t = map(int, input().split()) total = w * h if total == t: print('YES') elif total % (n + t) == 0: print('YES') else: print('NO')