Secret --MAX

Time Limit: 3 Seconds    Memory Limit: 65536 KB

Agent Smith transfers to a secret center secret information consisting of one strictly positive integer number. For coding the number, he presents each digit of the number by its corresponding word, and concatenates the words. For example, 42 may be  transformed to FOURTWO. Agent Smith knows four languages (the 1st , the 2nd , the 3rd and the 4th ). In these languages,  numbers from 0 to 9 are spelled as follows (all letters are capital Latin, ASCII codes in range 65–90):

DigitLanguage 1 SpellLanguage 2 SpellLanguage 3 Spell Language 4 Spell
0ZEROSIFIRZEROZERO
1UNUBIRJEDENONE
2DOIIKIDWATWO
3TREIUCTRZYTHREE
4PATRUDORTCZTERYFOUR
5CINCIBESPIECFIVE
6SASEALTISZESCSIX
7SAPTEYEDISIEDEMSEVEN
8OPTSEKIZOSIEMEIGHT
9NOUADOKUZDZIEWIECNINE

After such encoding, he adds to the code some “noise” — redundant capital Latin chars. Any chars (including the chars already used in the code) can be added in any quantities in any positions of the code.
Write a program which should read the code and search the largest possible number coded by that code, making two different assumptions:
1. We don’t know what language Smith used, but it was the same language (of the given) overall the code;
2. Smith could code different digits using either different languages (of the given) or the same.

Input

Your program should input all lines and process them separately. Each single line contains not more than 105 capital Latin chars — the code. Size of the input is less than 1 Mb.

It’s guaranteed, that each code was received from a correct positive (non-zero) integer. By the way, it means that both results will be always positive. Your program should output them without leading zeroes.

Output

For each line from the input file your program should output two single-space-separated integers — the largest numbers  according to the listed two assumptions in that order.

Sample Input

SIZEROXSIEVDEMX

Sample Output

66 67
Submit

Source: South Eastern European Regional Contest 2011