Skip to content

Instantly share code, notes, and snippets.

@showyou
Created June 23, 2018 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save showyou/e1f539152567bbbbb4af8580da7d03dd to your computer and use it in GitHub Desktop.
Save showyou/e1f539152567bbbbb4af8580da7d03dd to your computer and use it in GitHub Desktop.
N = input()
S = 0
for i in N:
S += int(i)
if int(N) % S == 0:
print("Yes")
else:
print("No")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment