You are given an even integer n. Construct a binary number a=a_1a_2…a_n consisting of n binary digits such that it is divisible by n, and all numbers a_1a_2…a_i (the prefixes of a in binary notation) for i=1,2,…,n have different remainders modulo n.
The only line of input contains an integer n (2≤n≤1000, n is even).
Print the desired number a_1a_2…a_n as a string of n binary digits. Leading zeroes are disallowed. If there are several possible answers, print any one of them. It is guaranteed that at least one answer exists under these constraints.