#include<bits/stdc++.h> using namespace std; int main(){ for(int i=26;i>=1;i--) if(i&1)cout<<char(i+'a'-1)<<" "; return 0; }