Free basic version

This commit is contained in:
AB
2019-09-12 00:03:58 +03:00
parent e2ba2c900e
commit 1dcd90ab28
30 changed files with 5729 additions and 3 deletions

8
new_sum.py Normal file
View File

@@ -0,0 +1,8 @@
num = 123
res = 0
while num > 0:
res = res + num % 10
num = int(num / 10)
print(res)