N, D = gets.split.map(&:to_i) ans = if D <= N 'A' * D + 'C' * (N - D) else 'A' * (2 * N - D) + 'B' * (D - N) end puts ans