#include using namespace std; int main() { char i {3}; char c; for(i = 0; i < 26; ++i) { c = 'a' + i; cout << c << endl; } return 0; }