Why iam getting wrong answer

CodeChef: Practical coding for everyone in this problem can u help me out

@ananth25
plzz refer my c++ code for better understanding

#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int r1,r2;
	int d1,d2;
	cin>>r1>>r2;
	cin>>d1>>d2;
	if(r1,r2>=1 && r1,r2<=3000 && d1,d2>=-200 && d1,d2<=200 && (r1+d1)!=(r2+d2)){
	if((r1+d1)>(r2+d2)){
	    cout<<"Dominater";
	}
	else{
	    cout<<"Everule";}}
	return 0;
}

What if r1+d1 == r2+d2?
if r1+d1 is bigger print Dominator
else if r2+d2 is bigger print Everule
else print Tie