import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); sc.close(); if (a >= b) { System.out.println("Alice"); } else { System.out.println("Bob"); } } }