100 #ABC164B. [ABC164B] Battle

[ABC164B] Battle

Score : 200200 points

Problem Statement

Takahashi and Aoki will have a battle using their monsters.

The health and strength of Takahashi's monster are AA and BB, respectively, and those of Aoki's monster are CC and DD, respectively.

The two monsters will take turns attacking, in the order Takahashi's, Aoki's, Takahashi's, Aoki's, ... Here, an attack decreases the opponent's health by the value equal to the attacker's strength. The monsters keep attacking until the health of one monster becomes 00 or below. The person with the monster whose health becomes 00 or below loses, and the other person wins.

If Takahashi will win, print Yes; if he will lose, print No.

Constraints

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

Input

Input is given from Standard Input in the following format:

AA BB CC DD

Output

If Takahashi will win, print Yes; if he will lose, print No.

10 9 10 10
No

First, Takahashi's monster attacks Aoki's monster, whose health is now 109=110-9=1.

Next, Aoki's monster attacks Takahashi's monster, whose health is now 1010=010-10=0.

Takahashi's monster is the first to have 00 or less health, so Takahashi loses.

46 4 40 5
Yes