Pepi is an outstanding student studying Computer Science in Bucharest. In his year the total number of students is . Because Pepi cares a lot about his fellow students he doesn't bother remembering their names but he has assigned everyone, including himself, an ID from to .
The students in Pepi's year have organized a charitable event for the Ukrainian people where every student came dressed in of colors, either yellow or blue (it is possible that everyone wore only one of the colors). Unfortunately, Pepi forgot how everyone was dressed but he desperately wants to remember.
Because Pepi is a good judge of the human mind he remembers that any student talked to one of his classmates if and only if their ID differ by bit (in their binary representation). Also, Pepi is sure that any student did not talk to more than classmates that wore the same color as . Pepi remembers clearly the fact that the number of students that wore yellow was not equal to the number of students that wore blue.
Because this problem is a trivial one for Pepi he requests that you find any possible way that he and his friends were dressed at the event.
Input
On the first line there is one number () that has the meaning from the problem statement.
Output
On a single line there have to be printed values. These represent the colors Pepi and his classmates wore during the event, taking into account all the conditions Pepi remembers.
To simplify this problem the colors will be encoded: meaning yellow and meaning blue. A value found at the position in the output string represents the color that the student with the ID wore during the event (the first value from the output string is the color that the student with ID wore).
If there is more than one solution print any of them.
Example
stdin
1
stdout
11
Explanation
There are students with IDs ranging from to . The student with the ID talks only with the student with ID and he doesn't talk to more than students dressed with the same color as him.
The number of students dressed in yellow is not equal to the number of students dressed in blue. So, a possible way that the students were dressed would be blue and blue (). Of course, yellow, yellow () is another great solution.