import sys readline = sys.stdin.readline A = list(map(int,readline().split())) if A[0] < A[1] and A[2] > A[3]: print("YES") else: print("NO")