#include <stdio.h>
void main()   
{
     unsigned short int a;
     short int b=-3;
     a=b;
     printf("%u\n",a);
     system("pause");     
}