#Lutece0428. Mountain Number

Mountain Number

Migrated from Lutece 428 Mountain Number

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

A Mountain number is defined as continuous digits {D0,D1Dn1D_0, D_1\cdots D_{n-1}} (D0>0D_0 > 0 and n3n \geq 3),which exist DmD_m (0<m<n10 < m < n - 1) satisfied Di1<DiD_{i-1} < D_i (0<im0 < i\leq m) and Di>Di+1D_i > D_{i+1} (mi<n1m\leq i < n - 1).Such as 121121, 1234112341 and so on.

Now,BlinKer is facing a problem.He wants to calculate the number of mountain numbers in the closed interva [A,B][A,B]. Could you help him?

Input

First line is a integer TT ,which means the number of test cases.

Each case has two integers A,BA,B (0AB<2630\leq A\leq B<2^{63}) in a single line.

Output

For each case,first output Case #x: (xx start from 11),then output a single num which is the answer.

Samples

3
121 121
100 101
12341 12344
Case #1: 1
Case #2: 0
Case #3: 3

Resources

2011 UESTC ACM Training for Dynamic Programming