Your program must output a single line for each test case. The line should contain the ``digits'' an, an-1, ..., a1, a0, separated by commas. The following conditions must be satisfied:
- for all i in {0, 1, 2, ...n}: 0 <= ai < |B|
- X = a0 + a1B + a2B2 + ...+ anBn
- if n > 0 then an <> 0
- n <= 100
If there are no numbers meeting these criteria, output the sentence "The code cannot be decrypted.". If there are more possibilities:For the uniqueness of the answer,only print the one with smallest lexicographical order. For example, if the two sets are (4, 3, 18, 9) and (7, 1, 14, 8), then just output the first since its has smaller lexicographical order.