Sum Digits of a Number
HardAlgorithms
Loops
Arithmetic
Write a program that takes a positive integer and outputs the sum of its individual digits. For example, if the input is 123, the output should be 6 (1+2+3).
Example Input
123
Example Output
6
0% (0 passed / 0 attempted)