{"problem":{"name":"Harshad Number","description":{"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$. Given an integer $N$, determine whether it is a Harshad","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"abc080_b"},"statements":[{"statement_type":"Markdown","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.\n\n## Constraints\n\n*   $1?N?10^8$\n*   $N$ is an integer.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"abc080_b","tags":[],"sample_group":[["12","Yes\n\n$f(12)=1+2=3$. Since $12$ is divisible by $3$, $12$ is a Harshad number."],["57","No\n\n$f(57)=5+7=12$. Since $57$ is not divisible by $12$, $12$ is not a Harshad number."],["148","No"]],"created_at":"2026-03-03 11:01:13"}}