N = gets.to_i A = gets.split.map(&:to_i) B = A.select.with_index(1) { |a, i| i % 2 == 0 } if B.inject(:^) == 0 puts 'Bob' else puts 'Alice' end