The machine processes a natural number N according to the following algorithm:
1. A binary notation of the number N is being built.
2. The first two digits of this record are added to the end of the binary record in reverse order.
3. The result is translated into a decimal system and displayed on the screen.
Example. The number N = 11 is given. The algorithm works as follows:
1. Binary notation of the number N: 1011.
2. The numbers 01 are added to the end of the record - the first two digits are in reverse order (first the second, then the first), it turns out 101101.
3. The number 45 is displayed on the screen.
At which least initial N will the result on the machine screen be greater than 90?