Help me in solving CHEFCONTEST problem

My issue WHAT AM I DOING WRONG??

My code

#include <iostream>
using namespace std;

int main() {
	int t;
	cin>>t;
	for(int i=0;i<t;i++){
	    int x,p,y,q,a,b;
	    cin>>x>>p>>y>>q;
	    a=x+(p*10);
	    b=y+(q*10);
	    if(a<b){
	        cout<<"Chef\n";
	    }
	    else if (a==b){
	        cout<<"Draw\n";
	    }
	    else{
	        cout<<"Chefina\n";
	    }
	    
	}
	
	
	
	
	
	
	
	
	
	return 0;
}

Problem Link: CHEFCONTEST Problem - CodeChef

Bro, see here …
you can solve ur problem in 2 ways :

  1. cin>>x>>y>>p>>q;//or
  2. a=x+(y10);
    b=p+(q
    10);