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