#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); 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'); rep(i,k){ auto t=Q[i%4].front(); Q[i%4].pop(); Q[(i+1)%4].push(t); } rep(i,4){ while(!Q[i].empty()){ auto t=Q[i].front(); Q[i].pop(); cout<