A - Candy Cookie Law Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MiB

配点 : 100

問題文

高橋君の住む AtCoder 国には「飴を A 個以上所持している人はクッキーを B 個以上所持していなければならない」という奇妙な法律があります。

高橋君は飴を C 個、クッキーを D 個所持しています。高橋君がこの法律に違反しているかどうか判定してください。

制約

  • 1\leq A,B,C,D \leq 100
  • 入力は全て整数

入力

入力は以下の形式で標準入力から与えられる。

A B C D

出力

高橋君が法律に違反しているとき Yes、違反していないとき No と出力せよ。


入力例 1

10 20 30 40

出力例 1

No

AtCoder国には「飴を 10 個以上所持している人はクッキーを 20 個以上所持していなければならない」という法律があります。

高橋君は飴を 30 個、クッキーを 40 個所持しているため、この法律に違反していません。


入力例 2

10 20 30 4

出力例 2

Yes

入力例 3

100 100 1 1

出力例 3

No

Score : 100 points

Problem Statement

In AtCoder Country where Takahashi lives, there is a strange law that "a person who possesses A or more candies must possess B or more cookies."

Takahashi possesses C candies and D cookies. Determine whether Takahashi is violating this law.

Constraints

  • 1\leq A,B,C,D \leq 100
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

A B C D

Output

Print Yes if Takahashi is violating the law, and No otherwise.


Sample Input 1

10 20 30 40

Sample Output 1

No

In AtCoder Country, there is a law that "a person who possesses 10 or more candies must possess 20 or more cookies."

Takahashi possesses 30 candies and 40 cookies, so he is not violating this law.


Sample Input 2

10 20 30 4

Sample Output 2

Yes

Sample Input 3

100 100 1 1

Sample Output 3

No