#include using namespace std; int main() { int N, K; cin >> N >> K; if (N % 2 != 0) cout << "Alice" << endl; else cout << "Bob" << endl; return 0; }