#include using namespace std; int main() { int n; cin>>n; int cnt[4]; for (int i=0; i<4; i++) cnt[i] = 0; for (int i=0; i>x>>y; if (x % 2 == 0) { if (y % 2 == 0) { ++cnt[0]; } else { ++cnt[1]; } } else { if (y % 2 == 0) { ++cnt[2]; } else { ++cnt[3]; } } } int sum = 0; for (int i=0; i<4; i++) sum += cnt[i] / 2; if (sum % 2 == 1) { cout<<"Alice"<