summaryrefslogtreecommitdiff
path: root/comp/work/41/exersise.py
diff options
context:
space:
mode:
Diffstat (limited to 'comp/work/41/exersise.py')
-rw-r--r--comp/work/41/exersise.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/comp/work/41/exersise.py b/comp/work/41/exersise.py
new file mode 100644
index 0000000..2633c4c
--- /dev/null
+++ b/comp/work/41/exersise.py
@@ -0,0 +1,24 @@
+def getdigits(number):
+ digits = []
+ for i in number:
+ digits.append(int(i))
+ return digits
+
+def testnumber(number):
+ d = getdigits(number)
+ total = sum(d)
+
+ if (int(number) % total) == 0:
+ return True
+ return False
+
+n = int(input("which harshad number should you go to: "))
+
+count = 0
+i = 0
+while count < n:
+ i += 1
+ if testnumber(str(i)):
+ count += 1
+
+print(i)