#include
using namespace std;
int fun(int a)
{int sum=0;
for(;a!=0;a=a/10)
{
sum=sum+(a%10);
}
return sum;
};
int main()
{int number=0;
int num;
cin>>num;
while(number<num)
{ int a;
cin>>a;
int b=fun(a);
if(b%2==0)
{
if(b%4==0){cout<<“yes”<<endl;}
else{cout<<“no”<<endl;}
}
else{
if(b%3==0){cout<<“yes”<<endl;}
else{cout<<“no”<<endl;}
}
number++;}
return 0;
}
what’s the error in the code