Problem7179--ABC223 —— A - Exact Price

7179: ABC223 —— A - Exact Price

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

Takahashi'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?

Input

Input is given from Standard Input in the following format:
$X$

Output

If it is possible that the total amount of money in Takahashi's purse is Xyen, print Yes; otherwise, print No.

Constraints

0≤X≤1000
All values in input are integers.

Sample 1 Input

500

Sample 1 Output

Yes
If the purse has five 100-yen coins, the total amount of money is 500 yen. Thus, it is possible that the total amount is X=500 yen, so we should print Yes.

Sample 2 Input

40

Sample 2 Output

No

Sample 3 Input

0

Sample 3 Output

No
Note that the purse has at least one 100-yen coin.

Source/Category