100 atcoder#ABC150A. [ABC150A] 500 Yen Coins
[ABC150A] 500 Yen Coins
Score : points
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
.
2 900
Yes
Two -yen coins add up to yen, which is not less than yen.
1 501
No
One -yen coin is worth yen, which is less than yen.
4 2000
Yes
Four -yen coins add up to yen, which is not less than yen.