1 #include<iostream> 2 using namespace std; 3 int main(){ 4 unsigned short a; 5 short int b=-2; 6 a=b; 7 cout<<"a="<<a<<endl; 8 return 0; 9 }