#include using namespace std; using ll = long long; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b void vprint(T &V){ for(auto v : V){ cout << v << " "; } cout << endl; } int main(){ cin.tie(0); ios::sync_with_stdio(false); // input ll N; cin >> N; ll a = 0; ll b = 0; ll c = 0; ll d = 0; FOR(i, 0, N){ ll x, y; cin >> x >> y; if(x%2==0 && y%2==0){ a++; } if(x%2==0 && y%2==1){ b++; } if(x%2==1 && y%2==0){ c++; } if(x%2==1 && y%2==1){ d++; } } ll num = a/2 + b/2 + c/2 + d/2; if(num%2==1){ p("Alice"); } else{ p("Bob"); } return 0; }