In this problem, given any natural number x with n dígits x1 … xn, we say that y = y1 … yn is the result of fattening x if, for every i between 1 and n, yi = max{x1, …, xi}. 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
to return the result of fattening x. Yau may implement and use auxiliar procedures.
Precondition
It holds 0 < x < 109.
Observation You only need to submit the required procedure; your main program will be ignored.
Input/Output