using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ int[] cnt = new int[4]; for(int i=0;i v / 2).Sum(); Console.WriteLine(tot % 2 == 0 ? "Bob" : "Alice"); } int N; int[] X,Y; public Sol(){ N = ri(); X = new int[N]; Y = new int[N]; for(int i=0;iint.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }