#include <iostream> using namespace std; int main() { int n,sum=0; cin>>n; while(n) { sum+=n%10; n/=10; } cout<<sum; } // 64 位输出请用 printf("%lld")