#include <stdio.h>

int main(void)
{
	short code;
	printf("Enter ASCII number: ");
	scanf("%hd", &code);
	printf("You entered %c\n", code);
	return 0;
}
