#!/usr/bin/python from collections import defaultdict from operator import xor def factorize(n): res = defaultdict(int) d = 2 while d * d <= n: while n % d == 0: res[d] += 1 n /= d d += 1 if n > 1: res[n] += 1 return res N = int(raw_input()) print 'Alice' if reduce(xor, factorize(N).values()) else 'Bob'