#include <stdio.h>

int main(void)
{
  char c='A';
  for(int x=0;x<26;x++)
     {
       printf("%c\n",c+x);
     }
  printf("\n");  

	return 0;
}
