Delhi's Even odd

i wrote this code but when i run it no output is shown while submitting but if i run it separately on codingblocks ide i do get a expected output.What is reason for code not giving output while submitting or even on custom input in dashboard
/////code is below
#include
using namespace std;
int main() {

int tc;
cin>>tc;
while(tc--!=0){
    int num;
    cin>>num;
    int even_sum=0,odd_sum=0;
    while(num>0){
        int rem=num%10;
        if(rem%2==0)
        even_sum +=rem;
        else
        odd_sum +=rem;

    num /=10;
    }

if(even_sum%4==0||odd_sum%3==0)
cout<<"Yes"<<endl;
else
cout<<"No"<<endl;

}
return 0;

}

@hrishikeshjanjal There may be some temporary issue as our servers were being scaled. Try it after sometime.

@pratyush63 How long will it take to resolve i am still facing the same problem again.

@hrishikeshjanjal Please drop a mail at [email protected]

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.