시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB43375.000%

문제

A popular form of pencil game is to use letters to represent digits in a mathematical statement. An example is

 SEND
+MORE
-----
MONEY

which represents

 9567
+1085
-----
10652

Your task is to read in sets of three "words" and assign unique digits to the letters in such a way as to make the sum of the first two words equal to the third word.

입력

The input begins with a line containing a positive integer $n$ which is the number of test data sets. Each data set consists of three lines, each of which will contain one word with the third word being the sum of the first two. The words will contain no more than 20 uppercase letters.

출력

The output is to consist of $n$ sets of lines each containing the numeric representation of each word in the corresponding test data set. There will be exactly one correct solution for each data set. Leave an empty line after the output for each data set.

예제 입력 1

2
SEND
MORE
MONEY
MEND
COPE
CONEY

예제 출력 1

9567
1085
10652
9567
1085
10652