#include <iostream.h>

signed char ch;	// Very short integer 
		// Range is -128 to 127

main()
{
   cout << "The number is " << int(ch) << '\n';	
   return (0);
}

