Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
for i in range(7, 1000, 7):
str_i = str(i)
sum = 0
for j in str_i:
sum = sum + int(j)
if sum == 11:
print(i, end=', ')