Help me in solving CSJ12A problem

My issue

My code

import java.util.Scanner;

class Codechef
{
	public static void main (String[] args)
	{
		Scanner sc = new Scanner(System.in);
		
		int t = sc.nextInt();
		for(int i=0; i<t; i++)
		// #Update your code below this line to solve this problem
		{
    		int x = sc.nextInt();
    		int y = sc.nextInt();
    		int z = sc.nextInt();
    		if(x>y){
    		    if(x>z){
    		        System.out.println("Setter");
    		    }
    		    else if(z>y) {
    		        System.out.println("Editorialist");
    		    }
    		    else System.out.println("Setter");
    		}
    		else System.out.println("Tester");
		}
	}
}

Learning course: Solve Programming problems using Java
Problem Link: CodeChef: Practical coding for everyone