两个区间不重叠的情况:$B < C$ 或 $D < A$
a, b, c, d = map(int, input().split()) if b < c or d < a: print("No") else: print("Yes")