#include <stdio.h>

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

	return 0;
}
