#include <stdio.h>

int main(void) {
	char ch = 'abcdefghijk';
	printf("%c", ch);
	return 0;
}
