let n = stdin.ReadLine () |> int let a = stdin.ReadLine().Split " " |> Array.map int64 a |> Array.mapi (fun index n -> if index % 2 = 0 then 1L elif n > 1L then 2L else 1L) |> Array.sum |> fun x -> printfn "%s" (if x % 2L = 1L then "Alice" else "Bob")