#include using namespace std; typedef long long ll; typedef pair l_l; typedef pair i_i; template inline bool chmax(T &a, T b) { if(a < b) { a = b; return true; } return false; } template inline bool chmin(T &a, T b) { if(a > b) { a = b; return true; } return false; } const long long INF = 1e18; //const ll mod = 1000000007; ll f(ll x) { if(x <= 9) return x; return (x % 10) + f(x / 10); } int main() { cin.tie(0); ios::sync_with_stdio(false); ll N; cin >> N; for(int i = 2; i <= 100; i++) { N = f(N); } cout << N << endl; return 0; }