#D12141. Nasty Boys

    ID: 10101 Type: Default 1000ms 134MiB

Nasty Boys

Nasty Boys

Problem

Taro hides important books in the school locker, so he manages them more strictly than other people, and in addition to the keys provided by the school, he has installed the following button authentication type keys. ..

However, Taro, who easily forgets his password, has a habit of making it possible to write his password in one stroke. Even more sweet Taro wrote the candidates on paper when he thought about his password. Jiro, who happened to pick up the paper, tried to open the locker without throwing it away because he had a bad personality.

However, there are as many as 1000 password proposals written on the paper, and it seems that the sun will go down if you try all the inputs. Therefore, Jiro, who knows Taro's habits, decided to pick up only the ones that can be written with one stroke from the 1000 passwords in order to reduce the number of examinations, and asked the programmer to do the work.

There is always one or more candidates for each dataset. The rules for one-stroke writing are shown below.

  1. The same characters are not consecutive. For example, AAA is not allowed.
  2. One-stroke writing is possible in four directions, up, down, left and right. Do not move diagonally.
  3. It does not go out of the frame of the button array and continue. Movement such as ABCA is not allowed.
  4. You can pass over the characters that you have passed once.
  5. Input of only one character of the button is regarded as one-stroke writing.

Input

The input consists of a group of 1000 character strings as shown below, and each line is an uppercase alphabetic string of 1 to 10 characters from A to I. It is assumed that there is no duplication of character string data.

string1 string2 ... string1000

Output

Extract only the candidate passwords (candidatePassword) from the input and list them as follows. In the following cases, N candidates are listed.

candidatePassword1 candidatePassword2 ... candidatePasswordN

The output is the same as the order of the input strings and the order must not be changed.

Example

Input

ABCFI ABCABCABC AEI EFC (中略) DEHED EEEEE (以上でちょうど1000個)

Output

ABCFI EFC (中略) DEHED

inputFormat

inputs. Therefore, Jiro, who knows Taro's habits, decided to pick up only the ones that can be written with one stroke from the 1000 passwords in order to reduce the number of examinations, and asked the programmer to do the work.

There is always one or more candidates for each dataset. The rules for one-stroke writing are shown below.

  1. The same characters are not consecutive. For example, AAA is not allowed.
  2. One-stroke writing is possible in four directions, up, down, left and right. Do not move diagonally.
  3. It does not go out of the frame of the button array and continue. Movement such as ABCA is not allowed.
  4. You can pass over the characters that you have passed once.
  5. Input of only one character of the button is regarded as one-stroke writing.

Input

The input consists of a group of 1000 character strings as shown below, and each line is an uppercase alphabetic string of 1 to 10 characters from A to I. It is assumed that there is no duplication of character string data.

string1 string2 ... string1000

outputFormat

Output

Extract only the candidate passwords (candidatePassword) from the input and list them as follows. In the following cases, N candidates are listed.

candidatePassword1 candidatePassword2 ... candidatePasswordN

The output is the same as the order of the input strings and the order must not be changed.

Example

Input

ABCFI ABCABCABC AEI EFC (中略) DEHED EEEEE (以上でちょうど1000個)

Output

ABCFI EFC (中略) DEHED

样例

ABCFI
ABCABCABC
AEI
EFC
(中略)
DEHED
EEEEE
(以上でちょうど1000個)
ABCFI

EFC (中略) DEHED

</p>