Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created December 10, 2017 02:36
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 whatalnk/ce415e788430c5d4360b9f8992bab0ec to your computer and use it in GitHub Desktop.
Save whatalnk/ce415e788430c5d4360b9f8992bab0ec to your computer and use it in GitHub Desktop.
AtCoder ABC #080
n = input()
fx = sum(map(int, list(n)))
if int(n) % fx == 0:
print("Yes")
else:
print("No")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment