#include <stdio.h>



int  main() 
{ 
   unsigned int x = -1; 
   int y = ~0; //type promotion from int to unsigned int
   printf("%i\n",y);
   if (x == y) 
      printf("same"); 
   else
      printf("not same"); 
   return 0; 
}
