{"raw_statement":[{"iden":"problem statement","content":"An integer $X$ is called a Harshad number if $X$ is divisible by $f(X)$, where $f(X)$ is the sum of the digits in $X$ when written in base $10$.\nGiven an integer $N$, determine whether it is a Harshad number."},{"iden":"constraints","content":"*   $1?N?10^8$\n*   $N$ is an integer."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"12"},{"iden":"sample output 1","content":"Yes\n\n$f(12)=1+2=3$. Since $12$ is divisible by $3$, $12$ is a Harshad number."},{"iden":"sample input 2","content":"57"},{"iden":"sample output 2","content":"No\n\n$f(57)=5+7=12$. Since $57$ is not divisible by $12$, $12$ is not a Harshad number."},{"iden":"sample input 3","content":"148"},{"iden":"sample output 3","content":"No"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}