In the decimal representation of a certain number, the digits are arranged from left to right in descending order. Can this number be a multiple of 111?
Problem 907
Official solution
Suppose that the numbers indicated in the condition and divisible by 111 exist. Let be the smallest among them. There are two cases.
1) The number ends in zero. By erasing it, we obtain a smaller number with digits in descending order, also divisible by 111. Contradiction.
2) ends in a non-zero digit. Then the number is also divisible by 111 and the digits in its representation are in descending order. Again, a contradiction.
## Answer
It cannot.
## Problem