#include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,M; cin >> N >> M; int Xor = 0; while(N--){ int a; cin >> a; Xor ^= a/M; Xor ^= a%M; } if(Xor) cout << "Alice" << endl; else cout << "Bob" << endl; }