N = gets.to_i h = Hash.new 0 $<.each{|s| x, y = s.split.map &:to_i h[[x&1, y&1]] += 1 } puts h.map{|_, v| v/2}.sum.even? ? :Bob : :Alice