#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main() {
int n;
scanf("%d", &n);
int rem,sum=0;
while(n!=0){
rem=n%10;
sum=sum+rem;
n=n/10;
}
printf("%d",sum);
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: