x = int(input())
y = int(input())
# или x, y = map(int, input().split()) , если они вводятся в одну строчку
p = y - x + 1
if x % p == 1 and y % p == 0:
print('YES')
else:
print('NO')
x = int(input())
y = int(input())
# или x, y = map(int, input().split()) , если они вводятся в одну строчку
p = y - x + 1
if x % p == 1 and y % p == 0:
print('YES')
else:
print('NO')