f(x)1 f(x){int i;for(i=0;i<8&&(x&1)==0;x>>=1,i++);return i;}
main()2 main(){if(f(4)!=2)abort();exit(0);}
3