Let us define the operation of rebasing a number as writing out its digits in decimal form, then interpreting them in the smallest base N possible (2 <= n <= 10). For example, rebasing the number 1234 gives 194, since the smallest base that "1234" can be interpreted in is base 5, and "1234" interpreted in base 5 is 194 in decimal. Challenge Given a positive integer n, output n rebased as a decimal integer. Expected output Below is a list of the results of rebasing each number from 1 to 200: 1...