#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:
$f_{i,j} = f_{i,j-1}\times f_{i-1,j}, i > 1 \ and\ j > 1$
Given two integers , , how to calculate the value of mod ?
Input
The first line of the input is an integer (), which stands for the number of test cases you need to solve.
Every test case are two integers , ().
Output
For every test case, you should output Case #k:
first, where indicates the case number and starts at . Then the answer . 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