#Lutece1226. Huatuo's Medicine

Huatuo's Medicine

Migrated from Lutece 1226 Huatuo's Medicine

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Huatuo was a famous doctor. He use identical bottles to carry the medicine. There are different types of medicine. Huatuo put medicines into the bottles and chain these bottles together.

However, there was a critical problem. When Huatuo arrived the patient's home, he took the chain out of his bag, and he could not recognize which bottle contains which type of medicine, but he remembers the order of the bottles on the chain.

Huatuo has his own solution to resolve this problem. When he need to bring 22 types of medicines, E.g. A and B, he will put A into one bottle and put B into two bottles. Then he will chain the bottles in the order of -B-A-B-. In this way, when he arrived the patient's home, he knew that the bottle in the middle is medicine A and the bottle on two sides are medicine B.

Now you need to help Huatuo to work out what's the minimal number of bottles needed if he want to bring NN types of medicine.

Input

The first line of the input gives the number of test cases, TT(1T1001\leq T\leq 100). TT lines follow. Each line consist of one integer NN(1N1001\leq N\leq 100), the number of types of the medicine.

Output

For each test case, output one line containing Case #x: y, where xx is the test case number (starting from 11) and yy is the minimal number of bottles Huatuo needed.

Samples

输入数据 1

1
2

输出数据 1

Case #1: 3

Resources

The 2015 China Collegiate Programming Contest