#include <stdio.h>

#define PRN		printf

int main(void)
{
	PRN( "ABCDEFG" );
	return 0;
}
