What is the problem in this code

#include
using namespace std;

int main()
{
int N,r,s=0,a,b,t=0;
cin>>N;

while(N!=0)
{
    r=N%10;
    
    if(r%2==0)
    {
        s=s+r;
        N=N/10;
    }
    
    else
    {
        t=t+r;
        N=N/10;
    }
}

 if (s%4==0 || t%3==0)
 {
     cout<<"Yes";
 }
 
 else
 {
     cout<<"no";
 }

return 0;

}

hi @abhishekpandeybhu_da87a9e0d2c73079
1)There are t test cases
2)write “No” instead of “no”

here’s updated code https://ide.codingblocks.com/s/658574

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.

@abhishekpandeybhu_da87a9e0d2c73079 is the doubt clear?