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