#include
void wordleght();
void wordleght()
{
int k,a;
k=0;
a=~0;
while (a) {a<<=1; k++;}
printf( "Bits:%d",k);
}
main()
{
wordleght();
}

1