N,D = map(int, input().split()) if N > D: ans = 'A'*D + 'C'*(N-D) else: ans = 'A'*(2*N-D) + 'B'*(D-N) print(ans)