In this problem, given any natural number with digits , we say that is the result of fattening if, for every between 1 and , . For instance, if we fatten 7 we get 7, if we fatten 32064781 we get 33366788, and if we fatten 9000000 we get 9999999.
Write a function
int fatten(int x);
to return the result of fattening @x@.
You cannot use vectors in the code. We suggest to think of a recursive solution. You may implement and use auxiliar procedures.
Your program should follow a right programming style. You should include the appropriate comments.
It holds @x@ .
You only need to submit the required procedure; your main program will be ignored.
Input/Output