#include int main(){ int x=0; char c; while(scanf("%c",&c)+1){ if(c<58){ x+=c-48; } } printf("%d",x); return 0; }