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.

输入输出格式

输入格式


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

输出格式


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

输入输出样例

输入样例 #1

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

输出样例 #1

TEAM 2 WINS

输入样例 #2

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

输出样例 #2

TIE