#abc150a. [abc150_a]500 Yen Coins

[abc150_a]500 Yen Coins

Problem Statement

Takahashi has KK 500500-yen coins. (Yen is the currency of Japan.) If these coins add up to XX yen or more, print Yes; otherwise, print No.

Constraints

  • 1leqKleq1001 \\leq K \\leq 100
  • 1leqXleq1051 \\leq X \\leq 10^5

Input

Input is given from Standard Input in the following format:

KK XX

Output

If the coins add up to XX yen or more, print Yes; otherwise, print No.


Sample Input 1

2 900

Sample Output 1

Yes

Two 500500-yen coins add up to 10001000 yen, which is not less than X=900X = 900 yen.


Sample Input 2

1 501

Sample Output 2

No

One 500500-yen coin is worth 500500 yen, which is less than X=501X = 501 yen.


Sample Input 3

4 2000

Sample Output 3

Yes

Four 500500-yen coins add up to 20002000 yen, which is not less than X=2000X = 2000 yen.