NSYSTEM - Numeral System

no tags 

Prof. Hachioji has devised a new numeral system of integral numbers with four lowercase letters "m", "c", "x", "i" and with eight digits "2", "3", "4", "5", "6", "7", "8", "9". He doesn't use digit "0" nor digit "1" in this system.

The letters "m", "c", "x" and "i" correspond to 1000, 100, 10 and 1, respectively, and the digits "2", ...,"9" correspond to 2, ..., 9, respectively. This system has nothing to do with the Roman numeral system.

For example, character strings

"5m2c3x4i", "m2c4i" and "5m2c3x"

correspond to the integral numbers 5234 (=5*1000+2*100+3*10+4*1), 1204 (=1000+2*100+4*1), and 5230 (=5*1000+2*100+3*10), respectively. The parts of strings in the above example, "5m", "2c", "3x" and "4i" represent 5000 (=5*1000), 200 (=2*100), 30 (=3*10) and 4 (=4*1), respectively.

Each of the letters "m", "c", "x" and "i" may be prefixed by one of the digits "2", "3", ..., "9". In that case, the prefix digit and the letter are regarded as a pair. A pair that consists of a prefix digit and a letter corresponds to an integer that is equal to the original value of the letter multiplied by the value of the prefix digit.

For each letter "m", "c", "x" and "i", the number of its occurrence in a string is at most one. When it has a prefix digit, it should appear together with the prefix digit. The letters "m", "c", "x" and "i" must appear in this order, from left to right. Moreover, when a digit exists in a string, it should appear as the prefix digit of the following letter. Each letter may be omitted in a string, but the whole string must not be empty. A string made in this manner is called an MCXI-string.

An MCXI-string corresponds to a positive integer that is the sum of the values of the letters and those of the pairs contained in it as mentioned above. The positive integer corresponding to an MCXI-string is called its MCXI-value. Moreover, given an integer from 1 to 9999, there is a unique MCXI-string whose MCXI-value is equal to the given integer. For example, the MCXI-value of an MCXI-string "m2c4i" is 1204 that is equal to 1000 + 2*100 + 4*1. There are no MCXI-strings but "m2c4i" that correspond to 1204. Note that strings "1m2c4i", "mcc4i", "m2c0x4i", and "2cm4i" are not valid MCXI-strings. The reasons are use of "1", multiple occurrences of "c", use of "0", and the wrong order of "c" and "m", respectively.

Your job is to write a program for Prof. Hachioji that reads two MCXI-strings, computes the sum of their MCXI-values, and prints the MCXI-string corresponding to the result.

Input

The input is as follows. The first line contains a positive integer n (<= 500) that indicates the number of the following lines. The k+1 th line is the specification of the k th computation (k=1, ..., n).

n
specification1
specification2
...
specificationn

Each specification is described in a line:

MCXI-string1 MCXI-string2

The two MCXI-strings are separated by a space.

You may assume that the sum of the two MCXI-values of the two MCXI-strings in each specification is less than or equal to 9999.

Output

For each specification, your program should print an MCXI-string in a line. Its MCXI-value should be the sum of the two MCXI-values of the MCXI-strings in the specification. No other characters should appear in the output.

Example

Input:
10
xi x9i
i 9i
c2x2i 4c8x8i
m2ci 4m7c9x8i
9c9x9i i
i 9m9c9x8i
m i
i m
m9i i
9m8c7xi c2x8i

Output:
3x
x
6cx
5m9c9x9i
m
9m9c9x9i
mi
mi
mx
9m9c9x9i

hide comments
[Mayank Pratap]: 2015-06-08 16:33:47

I love these kind of probs.. :)

Pradd: 2015-04-08 07:56:50

Did it in Python very easily. Nice question.

lovecode: 2015-02-01 10:25:50

just read question carefully...and simply follow i got ac in 1st attempt.......

Alexandre Henrique Afonso Campos: 2014-01-31 20:16:47

Just create functions to transform from MXCI to decimal and backwards. There's no trick and from my point of view, the input is fine. I just had a lot of fun coding it!

Helder Lima da Rocha: 2013-08-26 01:49:20

I got WA many times. Try to alternate the inputs sequence, maybe you will notice a wrong answer. There are no wrong inputs.

Karan Chauhan: 2013-06-12 06:26:09

what am i supposed to do if the input is wrong? do i print nothing? or do i print wrong input?
Because, im getting a wrong answer if I dont consider wrong inputs.

Eduardo Nunes: 2013-03-22 19:52:21

phew... such a trivial solution... 101 lines of code...

Sandeep Singh Jakhar: 2012-01-21 09:26:23

perfect output still WA...are there any wrong inputs..??

Hermano: 2011-12-15 16:48:07

I got wa when I use g++ 4.3.2. Then I submitted the same code again using g++ 4.0.0-8 and got AC.

Can't understand it.

Last edit: 2011-12-15 16:54:20
Zoyla Dulce Piña del Bosque: 2011-07-07 19:02:08

will there be a wrong inpunt like mmx, or 0x, something like that?


Added by:Camilo Andrés Varela León
Date:2007-07-26
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Japan Domestic, 2005