#include using namespace std; typedef long long ll; signed main(){ ios::sync_with_stdio(false); cin.tie(0); int n; cin>>n; int a[2][2]={}; int ans=0; for(int i=0;i>x>>y; a[x%2][y%2]++; } for(int i=0;i<2;i++){ for(int j=0;j<2;j++){ ans+=a[i][j]/2; } } ans%=2; if(ans){ cout<<"Alice"<