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

문제

Design a program that can read a description of two systems of measurement for some common quantity (e.g., length, weight, area, time, etc.), a conversion rule that relates the two systems to one another, and a quantity expressed in one measurement system, and that can express that same quantity in the other system.

입력

The input will consist of 1 or more problem sets. Each problem set consists of specifications for two systems of measurement, a conversion rule, and a set of quantities to be converted.

Each problem set begins with a specification of the first system of measurement.

The first line of this specification gives the unit names for the system, presented as a set of one or more words on a single line, separated by single blanks. This line will be at most 80 characters long. Each word on that line names a single unit of measurement and is made up entirely of alphabetic characters. The order of the words will be from the largest unit to the smallest within that system of measurement, and no unit name will be repeated within this line.

This is followed by N − 1 lines (where N is the number of units named on the first line) giving internal conversion rules in the form

### unit1 = ### unit2

where the ### are positive integer or floating point numbers and ”unit1” and ”unit2” are unit names drawn from the first line of the specification. This set of N − 1 lines will be well-formed in the sense of providing enough information to convert any unit in the system into an appropriate value in any other unit.

The first system specification is followed immediately by a second, in the same format.

The second specification is followed by a conversion rule, in the same format as the internal conversion rule described above, but ”unit1” will be drawn from the first system of measurement and ”unit2” from the second.

The conversion rule is followed by one or more lines, each line giving a quantity in the first system. A quantity is expressed as one or more pairs, each pair consisting of a non-negative number followed by a unit name. Unit names in a quantity will be presented in descending order of size, though not all units in the system will necessarily be mentioned in every quantity.

All specification rules, conversion rules, and quantities will be restricted to ranges for which the desired output (see below) can be contained in normal (not “long”) integers.

The end of the list of quantities, and the end of that problem set, is indicated by a completely empty line.

If the next line after that empty one is non-empty, it represents the start of another problem set. If that next line is also empty, however, that indicates the end of the input to this program.

출력

For each input quantity, print a single line giving the equivalent quantity in the second system of measurement. The output will be presented as a series of pairs, each pair a number and a unit name, with all units in the system included (even if the corresponding number for that unit is zero). The pairs must be presented in decreasing order by unit size and should maximize the value of the larger units over the smaller. All numbers will be integers, and the number for the smallest unit will be rounded to the nearest integral value. Within the output line, numbers and unit names shall be separated from one another by a single space.

예제 입력 1

miles yards feet
5280 feet = 1 miles
3 feet = 1 yards
km m cm
1000 m = 1 km
0.01 m = 1 cm
1 feet = 30.48 cm
2 miles 1 feet
0.0833 feet

furlongs fathoms
1 furlongs = 110 fathoms
feet inches
12 inches = 1 feet
1 fathoms = 6 feet
1 furlongs
0.5 furlongs 0.25 fathoms


예제 출력 1

3 km 218 m 99 cm
0 km 0 m 3 cm
660 feet 0 inches
331 feet 6 inches