#include using namespace std; int sum_of_digits(int x) { if(!(x/10)) { return x; } return (x - (x/10)*10) + sum_of_digits(x/10); } int reduction_of_digits(int x) { if(!(x/10)) { return x; } return reduction_of_digits(sum_of_digits(x)); } int main() { /* int a; cin >> a; cout << reduction_of_digits(a) << endl; return 0; */ }