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