#include <stdio.h>

int main(void) {
	// your code goes here
	printf("Data type        Number of bytes\n");
	printf("----------        --------------\n");
	printf("char              %d\n",sizeof(char));
	return 0;
}
