407782: GYM102893 B Bacteria

Memory Limit:512 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

B. Bacteriatime limit per test1 secondmemory limit per test512 megabytesinputstandard inputoutputstandard output

The Berland University of Biology (BUB) studies bacteria. It is known that the behaviour of a bacterium is determined by the structure of its DNA. In this problem, we assume that the bacterial DNA is a string consisting of zeros and ones.

Recently, scientists at the BUB have discovered a new type of bacteria. Its main feature is that when a bacterium divides, its DNA does not replicate, but divides into two halves. More precisely, let's suppose that the DNA of the original bacterium is a string $$$S=s_1s_2\ldots s_k$$$ of even length $$$k$$$ ($$$s_i$$$ denotes the $$$i$$$-th character of the string $$$S$$$ and is equal to either $$$0$$$ or $$$1$$$). Then, after the division there are two bacteria with DNA equal to $$$s_1s_2\ldots s_{\frac{k}{2}}$$$ and $$$s_{\frac{k}{2}+1}\ldots s_{k-1}s_k$$$, respectively.

For the experiment, the scientists are planning to take a bacterium with DNA of length $$$2^n$$$. The experiment consists of $$$n+1$$$ steps. At the end of each step, except for the last one, each currently available bacterium divides. So, in the first step, there will be only one bacterium with DNA of length $$$2^n$$$, in the second — two bacteria with DNA of length $$$2^{n-1}$$$ each, and so on. Finally, in the $$$n+1$$$-st step, there will be $$$2^n$$$ bacteria, each of them will have only one character in its DNA.

Of course, it is not interesting to study bacteria with the same DNA. Determine what the DNA that the first bacterium should have, so that there are as many different types of DNA as possible obtained during the experiment.

Input

The first line contains one integer $$$n$$$ ($$$1\le n\le 20$$$) denoting that the DNA of first bacterium should have the length of $$$2^n$$$.

Output

Print one string of characters $$$0$$$ and $$$1$$$, its length must be equal to $$$2^n$$$ — the DNA of the first bacterium, so that the number of different DNA during the experiment is greatest possible. If there are many possible answers, print any of them.

ExampleInput
3
Output
00100111
Note

There will be 9 different DNA to appear during the experiment in the first sample test: $$$00100111$$$, $$$0010$$$, $$$0111$$$, $$$00$$$, $$$10$$$, $$$01$$$, $$$11$$$, $$$0$$$ and $$$1$$$.

加入题单

算法标签: