Help me in solving SPECIALITY problem

My issue

how to solve it

My code

#include <stdio.h>

int main() {
    int T;
    scanf("%d", &T); 

    while (T--) {
        int X, Y, Z;
        scanf("%d %d %d", &X, &Y, &Z); 
        if (X > Y && X > Z) {
            printf("Setter\n");
        } else if (Y > X && Y > Z) {
            printf("Tester\n");
        } else if (Z > X && Z > Y) {
            printf("Editorialist\n");
        }
    }

    return 0;
}

Learning course: Algorithmic Problem Solving
Problem Link: https://www.codechef.com/learn/course/klu-problem-solving/KLUPS00/problems/SPECIALITY