vault backup: 2023-11-13 14:02:16

This commit is contained in:
2023-11-13 14:02:16 +01:00
parent 1aa009d946
commit e8d7b7a7fe

View File

@ -7,7 +7,7 @@ def sum_digits (n: int) -> int:
a = n//100
b = (n//10)%10
c = n%10
return a*b*c
return (a+b+c)
```
## Exercise 2: