#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define REP(i,n) for(int i=0; i=b; --i) #define ALL(c) (c).begin(), (c).end() typedef long long ll; typedef vector VI; typedef vector VL; typedef vector VVI; typedef vector VVL; typedef pair P; typedef pair PL; int main() { int n; VVI cnt(2, VI(2)); cin >> n; REP(i,n){ int x, y; scanf("%d %d", &x, &y); cnt[x%2][y%2]++; } int s = 0; REP(i,2) REP(j,2) s += cnt[i][j] / 2; cout << (s % 2 ? "Alice" : "Bob") << endl; return 0; }