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