require "prime" N = gets.to_i ans = if N.prime_division.inject(0) {|s, (_, a)| s ^ a} > 0 "Alice" else "Bob" end puts ans