#include #define REP(i, n) for(int i = 0;i < n;i++) #define ll long long using namespace std; //typedef vectorvec; //typedef vectorvec; //typedef vector mat; const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1}; const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1}; const int INF = 1000000000; const ll LINF = 1000000000000000000;//1e18 //const ll MOD = 1000000007; const double PI = acos(-1.0); const double EPS = 1e-10; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } //template inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;}; struct UnionFind { vector par; UnionFind(int n) : par(n, -1) { } void init(int n) { par.assign(n, -1); } int root(int x) { if (par[x] < 0) return x; else return par[x] = root(par[x]); } bool issame(int x, int y) { return root(x) == root(y); } bool unite(int x, int y) { x = root(x); y = root(y); if (x == y) return false; if (par[x] > par[y]) swap(x, y); // merge technique par[x] += par[y]; par[y] = x; return true; } int size(int x) { return -par[root(x)]; } }; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; UnionFind uf(N); vector cnt(N); REP(i,N-1){ int a, b; cin >> a >> b; uf.unite(a, b); cnt[a]++; cnt[b]++; } set st; map mp; REP(i,N){ st.insert(uf.root(i)); mp[uf.root(i)]++; } if(st.size() == 1) cout << "Bob" << endl; else if(st.size() == 2){ REP(i,N){ if(cnt[i] % 2 == 0) continue; cout << "Alice" << endl; return 0; } cout << "Bob" << endl; } else cout << "Alice" << endl; }