from collections import Counter N = int(input()) class UnionFind: def __init__(self, n): super().__init__() self.parent = [i for i in range(n)] def root(self, x): if self.parent[x] != x: return self.root(self.parent[x]) else: return x def unite(self, x, y): rx = self.root(x) ry = self.root(y) if rx != ry: self.parent[rx] = ry uni = UnionFind(N) temp_list = [0 for i in range(N)] for i in range(N-1): a, b = list(map(int, input().split())) uni.unite(b, a) temp_list[a] += 1 temp_list[b] += 1 count = Counter(uni.parent) count2 = Counter(temp_list) if count[0] == N: print("Bob") elif len(count) == 2: if 2 in count2: if count2[2] == N-1: print("Bob") else: print("Alice") else: print("Alice") else: print("Alice")