#include <stdio.h>

int main(void) {

	char char_val;
	printf ("%c \n", char_val = 'a' + 6);
	return 0;
}
