Team

题意翻译

构造一个 01 序列,包含 n 个 0,m 个 1 要求不存在连续 2 个 0,或 3 个 1 1 <= n; m<=1000000

题目描述

Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each team Olympiad, Vanya takes his play cards with numbers. He takes only the cards containing numbers 1 and 0. The boys are very superstitious. They think that they can do well at the Olympiad if they begin with laying all the cards in a row so that: - there wouldn't be a pair of any side-adjacent cards with zeroes in a row; - there wouldn't be a group of three consecutive cards containing numbers one. Today Vanya brought $ n $ cards with zeroes and $ m $ cards with numbers one. The number of cards was so much that the friends do not know how to put all those cards in the described way. Help them find the required arrangement of the cards or else tell the guys that it is impossible to arrange cards in such a way.

输入输出格式

输入格式


The first line contains two integers: $ n $ ( $ 1<=n<=10^{6} $ ) — the number of cards containing number 0; $ m $ ( $ 1<=m<=10^{6} $ ) — the number of cards containing number 1.

输出格式


In a single line print the required sequence of zeroes and ones without any spaces. If such sequence is impossible to obtain, print -1.

输入输出样例

输入样例 #1

1 2

输出样例 #1

101

输入样例 #2

4 8

输出样例 #2

110110110101

输入样例 #3

4 10

输出样例 #3

11011011011011

输入样例 #4

1 5

输出样例 #4

-1