Delhi'sodd eve problem

pls check my code.it is showing an infinite loop of yes in the output.i am unable to find out the mistake.

using namespace std;

int main() {

int n;
cin>>n;
int no;
while(n>0){

int suma=0;

int sumb=0;
	cin>>no;
	while(no>0){
		int ld=no%10;
		if(ld%2==0){
			suma=suma +ld;
		}
		else{
			sumb=sumb+ld;
		}
		no=no/10;
	}
	if(suma%4==0){
		cout<<"Yes"<<endl;
	}
	else if(sumb%3==0 ){
		cout<<"Yes"<<endl;
	}
	else{
		cout<<"No"<<endl;
	}
	n=n-1;
}
return 0;

}

I have modified your code refer to :

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.