I have written down a large perfect square in binary, and then replaced some of the digits with question marks. Can you figure out what my original number was?
输入格式
The first line of the input gives the number of test cases, . test cases follow, one per line. Each line contains : a perfect square written in binary, but with some of the digits replaced by question marks.
输出格式
For each test case, output one line containing "Case #: ", where is the case number (starting from 1) and is a perfect square written in binary, obtained by replacing each '?' character in with either a '0' character or a '1' character.
样例
样例输入 1
3
1???
1
10??110??00??1000??
样例输出 1
Case #1: 1001
Case #2: 1
Case #3: 1011110110000100001
数据范围与提示
Limits
.
begins with '1'.
contains only the characters '0', '1', and '?'.
In every test case, there is exactly one possible choice for .