#include <stdio.h>

int main(void) {
	char s[10] = {0};
    for(int i = 0; i < 9; ++i) s[i] = rand()%26+'A';
    printf("%s\n",s);
	return 0;
}
