#include <stdio.h>
int main()
{
    int a,b,c,d,e;
    printf("name:sathiyanarayanan.R \n");
    printf("roll no:25cs071 \n");
    printf("enter the number:");
    scanf("%d",a);
    a=d;
    e=0;
    while(a>0)
    {
        b=a%10;
        c=a/10;
        e=e+b;
    }
    printf("the sum of all individual digits of the number %d is %d",d,e);
    return 0;
}