#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 -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 is then stored as 01100011
, and stored as 10010011
.Now a problem is that the value will change after storing in the register for a large decimal number. For instance, will be stored as 00001011
for . Yes! Because is overflow for this -digit register.
The operation of the calculator is and . In the sub
operation , it should be guaranteed that the number stored in is not smaller in decimal base than that in , otherwise XiaoA will roar, it's too hard!
.
Since XiaoA can do it, how about you?
Input
In the first line is (), which is the number of test cases.
For each of the next lines, the first is a number (), then there is a operation either or , where (stored in ) and (stored in ) are nonnegtive decimal integers ().
Output
For each case, you should output one line.
First, output Case #C:
, where is the number of the test case, from to .
Then, if it is a sub
operation and the number stored in is smaller in decimal base than that in , you should output Maybe , it is really too hard, hha!
, else you should output the number which is stored in 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