#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int t; cin >> t; while(t--){ int n; cin >> n; for(int i = 0; i < n/2; ++i) cout << "ABACBC"; if(n&1) cout << "ABC"; cout << '\n'; } return 0; }