#abc101b. [abc101_b]Digit Sums
[abc101_b]Digit Sums
Problem Statement
Let denote the sum of the digits in the decimal notation of . For example, .
Given an integer , determine if divides .
Constraints
Input
Input is given from Standard Input in the following format:
Output
If divides , print Yes
; if it does not, print No
.
Sample Input 1
12
Sample Output 1
Yes
In this input, . As , divides .
Sample Input 2
101
Sample Output 2
No
As , does not divide .
Sample Input 3
999999999
Sample Output 3
Yes