Let us call an integer interesting if the product of its digits is divisible by the sum of its digits. You are given two integers A and B. Find the number of interesting integers between A and B (both inclusive).
The first line of the input gives the number of test cases, T. T lines follow.
Each line represents a test case and contains two integers: A and B.
For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the number of interesting integers between A and B (inclusive).
In Sample Case #1, since the product and the sum of digits are the same for single-digit integers, all integers between 1 and 9 are interesting.
In Sample Case #2, there are no interesting integers between 91 and 99.
In Sample Case #3, there are five interesting integers between 451 and 460: