5569: Exact Price精确价格(ABC223A)
内存限制:1024 MB
时间限制:2.000 S
评测方式:文本比较
命题人:
提交:0
解决:0
题目描述
Problem Statement:
Xiaoniu's purse has one or more $100$yen coins in it and nothing else. (Yen is the Japanese currency.)
Is it possible that the total amount of money in the purse is $X$ yen?
Xiaoniu's purse has one or more $100$yen coins in it and nothing else. (Yen is the Japanese currency.)
Is it possible that the total amount of money in the purse is $X$ yen?
小牛的钱包里有一个或多个100元硬币,没有其他东西。请问钱包里的总金额是否可能是X元?
输入
Input is given from Standard Input in the following format:
```
$X$
```
输出
If it is possible that the total amount of money in Xiaoniu's purse is $X$ yen, print `Yes`; otherwise, print `No`.
如果小牛钱包里的总金额可能是X元,请输出Yes;否则,输出No。
样例输入 复制
500
样例输出 复制
Yes
提示
Constraints:
- $0 \leq X \leq 1000$
- All values in input are integers.
- $0 \leq X \leq 1000$
- All values in input are integers.