#abc150a. [abc150_a]500 Yen Coins
[abc150_a]500 Yen Coins
Problem Statement
Takahashi has -yen coins. (Yen is the currency of Japan.) If these coins add up to yen or more, print Yes
; otherwise, print No
.
Constraints
Input
Input is given from Standard Input in the following format:
Output
If the coins add up to yen or more, print Yes
; otherwise, print No
.
Sample Input 1
2 900
Sample Output 1
Yes
Two -yen coins add up to yen, which is not less than yen.
Sample Input 2
1 501
Sample Output 2
No
One -yen coin is worth yen, which is less than yen.
Sample Input 3
4 2000
Sample Output 3
Yes
Four -yen coins add up to yen, which is not less than yen.