#includeint main(){int x,s=0; scanf("%d",&x); for(;x;x/=10) s+=x%10; printf("各位数字之和=%d\n",s); return 0;}