Files
CodeObject/zeta_python/completed/4673.py

9 lines
160 B
Python

a=set(i for i in range(1,10001))
s = set()
for i in range(1,10001):
for j in str(i):
i+=int(j)
s.add(i)
a = sorted(a-s)
for i in a:
print(i)