#include using namespace std; int main(){ int K; cin >> K; vector> Q(4); 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++){ char c = Q[i % 4].front(); Q[i % 4].pop(); Q[(i + 1) % 4].push(c); } for (int i = 0; i < 4; i++){ while (!Q[i].empty()){ cout << Q[i].front(); Q[i].pop(); } cout << endl; } }