mirror of
https://gitlab.gwdg.de/j.hahn02/university.git
synced 2026-01-01 14:54:25 -05:00
15 lines
193 B
C
15 lines
193 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int num, sum = 0;
|
|
scanf("%d", &num);
|
|
|
|
while (num > 0) {
|
|
sum += num % 10;
|
|
num /= 10;
|
|
}
|
|
|
|
printf("%d\n", sum);
|
|
return 0;
|
|
}
|