#include <bits/stdc++.h> using namespace std; int cnt,n; int main(){ cin>>n; while(n){ cnt+=n%10; n/=10; } cout<<cnt; }