#include using namespace std; using ll = long long; int main(){ cin.tie(0); ios::sync_with_stdio(0); int n; cin >> n; vector d(n, 0); for(int i = 0; i < n; ++i){ int u, v; cin >> u >> v; ++d[u]; ++d[v]; } if(all_of(d.begin(), d.end(), [](int x){return x >= 1;})){ cout << "Bob" << '\n'; } else{ cout << "Alice" << '\n'; } return 0; }