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