#ablb. [abl_b]Integer Preference

[abl_b]Integer Preference

Problem Statement

Snuke likes integers that are greater than or equal to AA, and less than or equal to BB. Takahashi likes integers that are greater than or equal to CC, and less than or equal to DD.

Does there exist an integer liked by both people?

Constraints

  • 0leqAleqBleq10180 \\leq A \\leq B \\leq 10^{18}
  • 0leqCleqDleq10180 \\leq C \\leq D \\leq 10^{18}
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB CC DD

Output

Print Yes or No.


Sample Input 1

10 30 20 40

Sample Output 1

Yes

For example, both like 2525.


Sample Input 2

10 20 30 40

Sample Output 2

No