Problem10215--CCC '24 J4 - Troublesome Keys

10215: CCC '24 J4 - Troublesome Keys

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

As Alex is typing, their keyboard is acting strangely. Two letter keys are causing trouble:

  • One letter key displays the same wrong letter each time it is pressed. Alex calls this key the silly key. Oddly, Alex never actually tries to type the wrong letter displayed by the silly key.
  • Another letter key doesn't display anything when it is pressed. Alex calls this key the quiet key.

Alex presses the silly key at least once but they don't necessarily press the quiet key.

Your job is to determine the troublesome keys and the wrong letter that is displayed. Luckily, this is possible because Alex never presses the silly key immediately after pressing the quiet key and Alex never presses the quiet key immediately after pressing the silly key.

Input

There will be two lines of input. The first line of input represents the $N\ (N \leq 500,000)$ keys Alex presses on the keyboard. The second line of input represents the letters displayed on the screen.

Both lines of input will only contain lowercase letters of the alphabet.

The first troublesome key pressed may be the silly key or the quiet key. A large number of keys are pressed.

Output

There will be two lines of output.

On the first line, output the letter corresponding to the silly key and the wrong letter displayed on the screen when it is pressed, separated by a single space.

On the second line, output the letter corresponding to the quiet key if it is pressed. Output the dash character (-) if the quiet key is not pressed.

Sample 1 Input

forloops
fxrlxxps

Sample 1 Output

o x
-
The letter corresponding to the silly key was the letter o. Each time it was pressed, the wrong letter x was displayed. The quiet key was not pressed.

Sample 2 Input

forloops
fxrlxxp

Sample 2 Output

o x
s
The letter corresponding to the silly key was the letter o. Each time it was pressed, the wrong letter x was displayed. The quiet key corresponds to the letter s which was not displayed.

Sample 3 Input

forloops
frlpz

Sample 3 Output

s z
o
The letter corresponding to the silly key was the letter s. Each time it was pressed, the wrong letter z was displayed. The quiet key corresponds to the letter o which was not displayed.

HINT

CCC24J4

Source/Category