#include using namespace std; int k, j; char t; queue Q[4]; int main(){ cin >> k; Q[0].push('A'); Q[0].push('E'); Q[1].push('B'); Q[2].push('C'); Q[3].push('D'); for(int i = 0; i < k; i++){ j = i % 4; t = Q[j].front(); Q[j].pop(); j = (j + 1) % 4; Q[j].push(t); } for(int i = 0; i < 4; i++){ while(!Q[i].empty()){ cout << Q[i].front(); Q[i].pop(); } cout << endl; } }