#SDNU1253. Problem A. Alice and Bob

Problem A. Alice and Bob

Description

Alice have a friend Bob, they like play games very much, They like to play games is to grab the stone, this classic game they play much times, so today they intend to make the classic reproduction, playing an overnight grab stone, they are two people who like innovation, so this time they got a new game is played

a. There are NN heap stones here.

b. Each time you can select stones that do not exceed M heap for any operation

c. They play game in turns and cannot do nothing

d. People who cannot move stones are losers

e. Alice first

Format

Input

The first line is T(0<T<=1000)TT(0 < T <= 1000) T is TestCase

Next line is N,M(0<N,M<=10000)N, M(0 < N, M <= 10000)

Next line follow NN number PP, PP is the number of stones in the stone heap(0<P<=10000)(0 < P <= 10000)

Output

Case #TestCase: winner

If Alice win output AliceAlice, otherwise BobBob

Samples

1
5 1
1 2 3 4 5
Case #1: Alice