Playing with bits((((())))

why is it showing TLE
#include
using namespace std;

void countset(int a, int b){
int cnt=0;
for(int i=a;i<=b;i++){
while(i>0){

	if((i&1)==1){
		cnt++;
	}
	i >>= 1;
}
}
cout<<cnt<<endl;

}

int main() {
int t;
cin>>t;
while(t–){
int a,b;
cin>>a>>b;
countset(a,b);

}
return 0;

}

hi @abhinavssr2003_eab0717682969e5c,
updated and commented the nmistake https://ide.codingblocks.com/s/662438

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.