#include <stdio.h>
#include <stdlib.h>
int main (void)
{
	char ch = 'a';
	printf("ch = %c\n",ch);
	printf("ASSIC of ch= %d\n",ch);
	
	system("pause");
	return 0;
}