시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB3914832.000%

문제

Every train carriage operated by CityRail of Sydney has a unique ID number of four digits. A not so uncommon myth amongst local school pupils is that every ID number can be manipulated by permuting the digits, using brackets and using arithmetic operations from the set {'*' , '/', '+' , '-'} to calculate the number 10.

Your task is to check the validity of this myth for the carriages operated by CityRail of Sydney and for train carriages from other cities whose ID numbers were collected.

Reminder: The operation '/' refers to integer division. Most of you already know it, but here are two examples: result of 5/2 is 2 and of 2/5 is 0.

입력

The input consists of many test cases. The description of each test case consists of:

  • an integer N (1 < N < 1000), on a line by itself, which indicates the number of IDs collected from one city, and
  • N lines that contain a four-digit number each.

A zero on a line by itself indicates the end of input and should not be processed.

출력

For each test case print the conclusion of your investigation as TRUE or BUSTED as shown in “Output for the Sample Input” below. Print TRUE if this myth is correct for all carriage ID numbers for that city. Otherwise, BUSTED is to be printed.

예제 입력 1

2
6666
5555
1
1234
0

예제 출력 1

BUSTED
TRUE