#pragma region KCLC // #pragma GCC target("avx2") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include using namespace std; #include using __gnu_cxx::rope; #include #include using Bint = boost::multiprecision::cpp_int; using Real = boost::multiprecision::number>; using ll = long long; using ld = long double; using pii = pair; using pll = pair; #define pb push_back #define mp make_pair #define mt make_tuple #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define elif else if #define updiv(N, X) ((N + X - 1) / X) #define sigma(a, b) ((a + b) * (b - a + 1) / 2) #ifdef LOCAL #include "debug.hpp" #else #define debug(...) #endif struct fast_ios { fast_ios() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); }; } fast_ios_; template inline bool chmax(T& a, T b) { return ((a < b) ? (a = b, true) : (false)); } template inline bool chmin(T& a, T b) { return ((a > b) ? (a = b, true) : (false)); } #pragma endregion KCLC //---------------------------------------------------------------------------- constexpr int inf = 1 << 30; constexpr ll INF = 1LL << 60; constexpr int dx[] = {1, 0, -1, 0, 1, -1, 1, -1}; constexpr int dy[] = {0, 1, 0, -1, 1, 1, -1, -1}; constexpr int mod = 998244353; constexpr int MOD = 1e9 + 7; map prime_factorize(long long n) { map res; for (long long p = 2; p * p <= n; ++p) { if (n % p != 0) continue; int num = 0; while (n % p == 0) { ++num; n /= p; } res[p] = num; } if (n != 1) res[n] = 1; return res; } int main() { int N; cin>>N; auto a=prime_factorize(N); int sum=0; for(const auto &i:a){ sum=sum^i.second; } cout<<(sum==0? "Bob":"Alice")<