#Lutece0306. XiaoA's Calculator

XiaoA's Calculator

Migrated from Lutece 306 XiaoA's Calculator

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

XiaoA is a lovely boy who likes designing some digital product.One day, he met XiaoB who is XiaoA's little girl friend and told her that his new product had came out.It's a calculator which can do add(++) opeartion and sub(-) operation between nonnegative numbers.

Actually, XiaoA's calculator is very low-grade.However, XiaoB is not willing to make XiaoA disappoint, and praised XiaoA's talent all the same.

The calculator has three KK-digit register, named Ra, Rb and Rc.You can input a nonnegative decimal number to the register Ra and Rb, which will be stored in the binary base.For example, if KK is 88 then 9999 stored as 01100011, and 147147 stored as 10010011.Now a problem is that the value will change after storing in the register for a large decimal number. For instance, 523523 will be stored as 00001011 for K=8K=8. Yes! Because 523523 is overflow for this 88-digit register.

The operation of the calculator is Ra+Rb=RcR_a + R_b = R_c and RaRb=RcR_a - R_b = R_c. In the sub operation , it should be guaranteed that the number stored in RaR_a is not smaller in decimal base than that in RbR_b , otherwise XiaoA will roar, it's too hard!.

Since XiaoA can do it, how about you?

Input

In the first line is NN (N100N\leq 100), which is the number of test cases.

For each of the next NN lines, the first is a number KK(1K161\leq K\leq 16), then there is a operation either A+BA + B or ABA - B, where AA(stored in RaR_a) and BB(stored in RbR_b) are nonnegtive decimal integers (0A,B1070\leq A, B\leq 10^7).

Output

For each case, you should output one line.

First, output Case #C: , where CC is the number of the test case, from 11 to TT.

Then, if it is a sub operation and the number stored in RaR_a is smaller in decimal base than that in RbR_b, you should output Maybe , it is really too hard, hha!, else you should output the number which is stored in RcR_c in decimal base.

Samples

3
8 5 + 3
8 4 - 9
8 523 + 1
Case #1: 8
Case #2: Maybe , it is really too hard, hha!
Case #3: 12

Resources

ty12