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