Problem
- Alice is driving from her home to her office which is AA kilometers away and will take her XX hours to reach.
- Bob is driving from his home to his office which is BB kilometers away and will take him YY hours to reach.
- Determine who is driving faster, else, if they are both driving at the same speed print EQUAL.
Input Format
- The first line will contain TT, the number of test cases. Then the test cases follow.
- Each test case consists of a single line of input, containing four integers A,X,B,A,X,B, and YY, the distances and the times taken by Alice and Bob respectively.
Output Format
- For each test case, if Alice is faster, print ALICE. Else if Bob is faster, print BOB. If both are equal, print EQUAL.
- You may print each character of the string in uppercase or lowercase (for example, the strings equal, equAL, EquAl, and EQUAL will all be treated as identical).
Constraints
Input
- 3
- 20 6 20 5
- 10 3 20 6
- 9 1 1 1
- Bob
- Equal
- Alice
Explanation:
Test case : Since Bob travels the distance between his office and house in hours, whereas Alice travels the same distance of kms in hours, BOB
is faster.
Test case : Since Alice travels the distance of km between her office and house in hours and Bob travels a distance of km in hours, they have equal speeds.
Test case : Since Alice travels the distance of km between her office and house in hour and Bob travels only a distance of km in the same time, ALICE
is faster.