Gromozeka loves number cookies. Among all the numerical cookies, Gromozek eats only those on which the sum of the digits of the written number in the decimal number system is a divisor of the number itself. You are given a number written on a cookie. Determine whether Gromozeka will eat it or not.
Input
The input is an integer
N
(1<=N<=10
9).
Imprint
Print
Yes
if Gromozeka will eat such a cookie,
No
if not.
Examples
# |
Input |
Output |
1 |
12 |
Yes |
2 |
101 |
No |