Text Comparsion 

Write a program that will compare two texts. The two texts are assumed do be different versions of the same text. Three different things can happen to a text between two versions:

Any combination of the three can occour at once. A move, for example will look as a deletion at one place and an insert at another. You should list all changes that happened from the old to the new version.

Input

The input file contains several datasets, each containing two lines with text1 and text2 strings. They contain the two versions of the text to compare. String text2 should be regarded as the older version, and string text1 as the newer.

Output

The outputfile contain all deletions, insertions and changes that happended to the text between the two versions in the following format:

The position of the first character always refers to the position in the older version (i.e. the position within text2). The first character in a file is numbered zero (0). The program should not be case-sensitive. Print a blank line after each dataset.

Sample Input

       0         1         2         3         4         5         6
       0123456789012345678901234567890123456789012345678901234567890
text1: This is a joke. This is not life. Don't consider it anyway...
text2: This is not a joke. This is life. Consider it thoroughly...

Sample Output

pos 8 deleted 4 chars "not "
pos 28 inserted 4 chars "not "
pos 34 inserted 6 chars "don't "
pos 46 changed 10 chars from "thoroughly" to "anyway"

Note: The numbers for position characters and the headings of lines are not included in the input file.