#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; for (int j = 0; j < t; j++) { int n; cin >> n; cout << "ABACBC"; for (int i = 0; i < n - 2; i++) { cout << "ABC"; } cout << endl; } return 0; }