#Lutece0289. Catching the Thief

Catching the Thief

Migrated from Lutece 289 Catching the Thief

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

In the Qingshui Village, there's a clever thief and a cleverer police.

There are NN houses in Qingshui Village which are located in a straight line. And the NN houses are numbered from 11 to NN according to the direction of the line. Two houses are consided to be neighbor of each other if and only if there is no other house between them.

The thief hides in one of NN houses now, and the police tries to find him out. Every day the police will choose a house to check and he will catch the thief if he hides in that house. If the thief survive the arrest of the police, in the night he will move to a neighboring house to pass through the next day.

What is the number of days the police needs to catch the thief in the worst case?

Remember that the police is a clever man.

Input

In the first line, an integer T(T100)T (T \leq 100) indicates the number of cases.

TT lines follow. Each contains an integer NN described above. (1N10000)(1 \leq N \leq 10000)

Output

For each test case, output Case x: d in which xx is the number of test case counted from one, and dd is the number of days before the police catch the thief in the worst case.

Samples

2
1
2
Case 1: 1
Case 2: 2

Note

Case 11: There is only one room, so the police can catch the thief on the first day.

Case 22: There are two rooms. The police can check room 11 on the first day. The worst case is that the thief is in room 22, but in this case the police can check room 11 on the second day and will catch the thief for sure.

Resources

2010 ACM-ICPC Multi-University Training Contest 13 Host by UESTC