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