#include #include using namespace std; int main() { int64_t A, B; cin >> A >> B; if (A >= B && A-B != 1) { cout << "Alice" << endl; // Aliceが先に0になったのでBobの勝ち } else { cout << "Bob" << endl; // Bobが先に0になったのでAliceの勝ち } return 0; }