#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N);
  for(int &i:A)cin>>i;
  int od=0;
  for(int i=1;i<N;i+=2)od^=A[i];
  bool fwin=false;
  if(od!=0)fwin=true;
  cout<<(fwin?"Alice\n":"Bob\n");
}