My issue
My code
#include <iostream>
using namespace std;
int main() {
// your code goes here
int x,y,z,t;
cin>>t;
while(t--){
cin>>x>>y>>z;
if(x>y&&x>z){
cout<<"Setter"<<endl;
}
else if(y>x&&y>z){
cout<<"Tester"<<endl;
}
else{
cout<<"Editorlist"<<endl;
}
}
return 0;
}
Problem Link: SPECIALITY Problem - CodeChef