#include using namespace std; #define rep(i,n) for(int i=0; i> s; int ans = 0; for (auto c : s) ans += c - '0'; cout << ans << endl; return 0; }