#Lutece0320. SZX sensei's lunatic base

SZX sensei's lunatic base

Migrated from Lutece 320 SZX sensei's lunatic base

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

Recently SZX sensei is addicted to encryption and wants to invent a new, strange and lunatic base. That is the every digit of a number is different! So given a key number of which the every digit indicates the base on every digit you can change the decimal number into the lunatic base and vice versa. For example the key number might be 268268 meaning that the base of first digit (from the right) is octal (八进制) and the second is senary (六进制) and the third is binary (二进制). See the sample to learn more.

In base 2345 In decimal
1
2
10 5
11 6
14 9
21 11
33 18

Input

The first line of the input is a single number NN(N10,000N\leq 10,000) indicating the number of test cases.The next NN lines might be either patten of the two from x y and to x y. yy is the key number of the encryption and every digit will be between 22 and 99. The former means you should change the decimal number xx into lunatic base y while the latter means you should change the number xx in lunatic base yy to a decimal number. The length of xx and yy are no more than 1010.

Output

For each test case, output one line. First ,output Case #C: , where CC is the number of test case, from 11 to TT. Then, output the number you've changed to.

Samples

4
from 11 2222
to 11 2222
from 11 2345
to 11 2345
Case #1: 1011
Case #2: 3
Case #3: 21
Case #4: 6

Resources

gongbaoa