#!/usr/bin/env cscript
#include <stdio.h>

int
main(int argc, char *argv[]) {
	const char ALPHABET['Z' - 'A' + 2];
	puts(ALPHABET);	
}