#include<iosream> using namespace std; int main(){ int n,c=0; cin>>n; while(n){ c+-n%10; n/=10; } cout<<c; return 0; }