#Lutece0364. Easy Calculation

Easy Calculation

Migrated from Lutece 364 Easy Calculation

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

KO is a Taobao engineer at infrastructure team. He likes thinking, especially about math and algorithm problem. One day a math puzzle comes to his mind.

Let’s define an equation as follow:

f1,j=j,j1f_{1,j} = j, j \geq 1 fi,1=1,i1f_{i,1} = 1, i \geq 1 $f_{i,j} = f_{i,j-1}\times f_{i-1,j}, i > 1 \ and\ j > 1$

Given two integers nn, mm, how to calculate the value of fn,mf_{n,m} mod 10910^9?

Input

The first line of the input is an integer TT (T1000T\leq 1000), which stands for the number of test cases you need to solve.

Every test case are two integers nn, mm (1n,m1091\leq n, m\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 the answer fn,m mod 109f_{n,m}\rm\ mod\ 10^9. See sample for more details.

Samples

4
1 2
2 2
2 3
3 3
Case #1: 2
Case #2: 2
Case #3: 6
Case #4: 12

Resources

The 9th UESTC Programming Contest Preliminary