#Lutece0367. Help

Help

Migrated from Lutece 367 Help

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

Standy is a clever boy, and loves solving puzzles very much. Recently, he was troubled by a difficult problem.

title

What’s the numbers in the 5th5_{th} line? You may find that it is just Yanghui Triangle, so the 5th5_{th} line should be 1 4 6 4 1. But Standy didn’t know Yanghui Triangle, and he found that two adjacent cells in a row and the cell above them and the cell below them form a diamond. What’s more, the upper and lower cells’ product is one larger than the left and right cells’ product. The picture below shows that 2×5=3×3+12 \times 5 = 3 \times 3 + 1. So the first and last number in each row is 11, and others can be determined by the Diamond Rule.

title

Standy wants to know the jthj_{th} number in the ithi_{th} row, and asks you for help.

Input

The first line of input contains an integer TT (T100T\leq 100), which is the number of test cases that follow.

Then TT lines follow, each of them containing two integers ii and jj (1ji1091\leq j\leq i\leq 10^9)

Output

For every test case, you should output Case #k: first, where kk indicates the case number and starts at 11. Then output the jthj_{th} number in the ithi_{th} row.

Samples

3
4 2
5 3
6 4
Case #1: 3
Case #2: 5
Case #3: 7

Note

As the answer may be very large, you should use long long instead of int. If you want to know more details, please refer to FAQ of CDOJ.

Resources

The 9th UESTC Programming Contest Preliminary