#include <stdio.h>
int main()
{
int n = 0;
int sum = 0;
scanf("%d",&n);
while(n)
sum = sum+n%10;
n = n/10;
}
printf("%d\n",sum);
return 0;