Problem E

Longest Match

Input: standard input

Output: standard output


A newly opened detective agency is struggling with their limited intelligence to find out a secret information passing technique among its detectives. Since they are new in this profession, they know well that their messages will easily be trapped and hence modified by other groups. They want to guess the intensions of other groups by checking the changed sections of messages. First they have to get the length of longest match. You are going to help them.


Input

The input file may contain multiple test cases. Each case will contain two successive lines of string. Blank lines and non-letter printable punctuation characters may appear. Each Line of string will be no longer than 1000 characters. Length of each word will be less than 20 characters.


Output

For each case of input, you have to output a line starting with the case number right justified in a field width of two, followed by the longest match as shown in the sample output. In case of at least one blank line for each input output 'Blank!'. Consider the non-letter punctuation characters as white-spaces.


Sample Input

This is a test.
test
Hello!

The document provides late-breaking information
late breaking.


Sample Output

 1. Length of longest match: 1
 2. Blank!
 3. Length of longest match: 2
____________________________________________________________________________________________ Tanbir Ahmed