n = gets.to_i cnt = Array.new(4, 0) n.times do x, y = gets.split.map(&:to_i) cnt[x % 2 * 2 + y % 2] += 1 end puts cnt.map{|x|x / 2}.inject(:+) % 2 == 0 ? "Bob" : "Alice"