migrate to git.charlotte.sh

This commit is contained in:
Charlotte Croce 2025-04-19 23:42:08 -04:00
commit fbd588721e
412 changed files with 13750 additions and 0 deletions

View file

@ -0,0 +1,7 @@
# Read an integer:
number = int(input('Enter a 3 digit number: '))
# Print the sum of the digits:
a = ((number // 100) + (number % 100 // 10) + (number % 10))
print(a)