Marsha and Bill jointly own a collection of marbles. They want to split the collection between them so that each receives an equal share.
This would be easy if every marble were worth the same, because then they could just split the collection in half by count. Unfortunately, some marbles are larger or more beautiful than others, so Marsha and Bill assign each marble a value: a natural number between $1$ and $6$. Now they want to divide the marbles so that each person gets the same total value.
It may be impossible to divide the marbles this way, even when the total value of all marbles is even. For example, with one marble of value $1$, one of value $3$, and two of value $4$, there is no way to split them into two sets of equal value.
Write a program that decides whether a fair partition of the marbles exists.
Each line of the input describes one collection of marbles to be divided. A line contains six non-negative integers $n_1, n_2, \ldots, n_6$, where $n_i$ is the number of marbles of value $i$. For instance, the collection above is described by the line 1 0 1 2 0 0. The total number of marbles in any collection is at most $20000$.
The input ends with a line containing 0 0 0 0 0 0; do not process this line.
For each collection, output Collection #k:, where $k$ is the number of the collection (starting from $1$), and on the next line print either Can be divided. or Can't be divided..
Print a blank line between consecutive collections.