#D9451. The Great Game

    ID: 7853 Type: Default 1000ms 256MiB

The Great Game

The Great Game

Two teams meet in The Game World Championship. Some scientists consider this game to be the most intellectually challenging game in the world. You are given two strings describing the teams' actions in the final battle. Figure out who became the champion.

Input

The input contains two strings of equal length (between 2 and 20 characters, inclusive). Each line describes the actions of one team.

Output

Output "TEAM 1 WINS" if the first team won, "TEAM 2 WINS" if the second team won, and "TIE" if there was a tie.

Examples

Input

[]8< 8<8<

Output

TEAM 2 WINS

Input

8<8<() []8<[]

Output

TIE

inputFormat

Input

The input contains two strings of equal length (between 2 and 20 characters, inclusive). Each line describes the actions of one team.

outputFormat

Output

Output "TEAM 1 WINS" if the first team won, "TEAM 2 WINS" if the second team won, and "TIE" if there was a tie.

Examples

Input

[]8< 8<8<

Output

TEAM 2 WINS

Input

8<8<() []8<[]

Output

TIE

样例

[]()[]8<
8<[]()8<
TEAM 2 WINS