import sys input = sys.stdin.readline T = int(input()) for _ in range(T): N = int(input()) print("ABC" * (N - 2) + "ABACBC")