#include <stdio.h>

int main() {
	char c = 'A';
	printf("c = %c\n", c);
	printf("c = %d\n", c);
	return 0;
}
