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