import java.util.*; import java.io.*; import java.text.*; //Solution Credits: Taranpreet Singh public class Main{ //SOLUTION BEGIN void solve(int TC) throws Exception{ int n = ni(), m = ni(); MyTreeSet a = new MyTreeSet<>(), b = new MyTreeSet<>(); for(int i = 0; i< n; i++){ int x = ni(); if(x>0)a.add(x); } for(int i = 0; i< m; i++){ int x = ni(); if(x>0)b.add(x); } boolean bob = true; if(a.size()!=b.size() || a.map.size()!= b.map.size())bob = false; else for(Map.Entry e:a.map.entrySet()) if(!b.map.getOrDefault(e.getKey(), 0).equals(e.getValue()))bob = false; pn(bob?"Bob":"Alice"); } class MyTreeSet{ private int size; private TreeMap map; public MyTreeSet(){ size = 0; map = new TreeMap<>(); } public int size(){return size;} public boolean isEmpty(){return size==0;} public void add(T t){ size++; map.put(t, map.getOrDefault(t, 0)+1); } public boolean remove(T t){ if(!map.containsKey(t))return false; size--; int c = map.get(t); if(c==1)map.remove(t); else map.put(t, c-1); return true; } public boolean contains(T t){return map.getOrDefault(t,0)>0;} public T ceiling(T t){return map.ceilingKey(t);} public T floor(T t){return map.floorKey(t);} public T first(){return map.firstKey();} public T last(){return map.lastKey();} } //SOLUTION END long mod = (long)998244353, IINF = (long)1e17; final int MAX = (int)1e3+1, INF = (int)2e9, root = 3; DecimalFormat df = new DecimalFormat("0.0000000000000"); double PI = 3.1415926535897932384626433832792884197169399375105820974944, eps = 1e-8; static boolean multipleTC = false, memory = false; FastReader in;PrintWriter out; void run() throws Exception{ in = new FastReader(); out = new PrintWriter(System.out); int T = (multipleTC)?ni():1; //Solution Credits: Taranpreet Singh for(int i = 1; i<= T; i++)solve(i); out.flush(); out.close(); } public static void main(String[] args) throws Exception{ if(memory)new Thread(null, new Runnable() {public void run(){try{new Main().run();}catch(Exception e){e.printStackTrace();}}}, "1", 1 << 28).start(); else new Main().run(); } long gcd(long a, long b){return (b==0)?a:gcd(b,a%b);} int gcd(int a, int b){return (b==0)?a:gcd(b,a%b);} int bit(long n){return (n==0)?0:(1+bit(n&(n-1)));} void p(Object o){out.print(o);} void pn(Object o){out.println(o);} void pni(Object o){out.println(o);out.flush();} String n(){return in.next();} String nln(){return in.nextLine();} int ni(){return Integer.parseInt(in.next());} long nl(){return Long.parseLong(in.next());} double nd(){return Double.parseDouble(in.next());} class FastReader{ BufferedReader br; StringTokenizer st; public FastReader(){ br = new BufferedReader(new InputStreamReader(System.in)); } public FastReader(String s) throws Exception{ br = new BufferedReader(new FileReader(s)); } String next(){ while (st == null || !st.hasMoreElements()){ try{ st = new StringTokenizer(br.readLine()); }catch (IOException e){ e.printStackTrace(); } } return st.nextToken(); } String nextLine(){ String str = ""; try{ str = br.readLine(); }catch (IOException e){ e.printStackTrace(); } return str; } } }