My issue
give other examples
My code
#include <stdio.h>
int main(void) {
// your code goes here
int t;
int r,c,i;
scanf("%d",&t);
for(i=0;i<t;i++)
{
scanf("%d%d",&r,&c);
/* while(c%2==0)
c/=2;*/
if((c*r)%2==0)
printf("Yes\n");
else
printf("No");
}
}
Problem Link: Chef and Chocolate Practice Coding Problem