|
|
#include<iostream>
using namespace std;
int main(){
int a,b,c,e;
cin >>a>>b>>c>>e;
if (a+e>b+c){
cout<<"xiaohei"<<endl;
}else if(a+e==b+c){
if(b>e){
cout<<"xiaohong"<<endl;
}else if(e>b){
cout<<"xiaohei"<<endl;
}else if(e==b){
cout<<"Draw"<<endl;
}
}else if(a+e<b+c){
cout<<"xiaohong"<<endl;
}
return 0;
}
|
|