#include <stdio.h>

main()
{
	signed char a=126,b=4,c;
	c=a+b;
	printf("\n %d",c);
	printf("\n Size of short = %d \n",sizeof(short));
}

