#C11600. Taco Game Winner
Taco Game Winner
Taco Game Winner
Alice and Bob are playing the Taco Game. In this game, you are given T test cases. For each test case, you are provided with an array of N integers and a threshold value X. Your task is to compute the sum S of the array. If \( S \le X \), then Alice wins the game for that test case, and you should output "Alice". Otherwise, Bob wins and you should output "Bob".
For example, if you have an array [1, 2, 3] and \( X = 10 \), since \( 1+2+3 = 6 \le 10 \), Alice wins.
inputFormat
The first line of input contains an integer T representing the number of test cases. For each test case:
The first line contains two space-separated integers \( N \) and \( X \), where \( N \) is the number of elements in the array and \( X \) is the threshold.
The second line contains \( N \) space-separated integers representing the elements of the array.
outputFormat
For each test case, output a single line containing either "Alice" if the sum of the array is less than or equal to \( X \), or "Bob" otherwise.
## sample2
3 10
1 2 3
4 5
2 2 2 2
Alice
Bob
</p>