#include int main(void){ int A=0,i; char S[100]; scanf("%s",S); for(i=0;i<=100;i++){ A += S[i]; } printf("%d",A); return 0; }