Which case i am missing in this solution of the question

#include
using namespace std;
void winner(int N1, int N2){
if( N1 > N2 ){
cout << “Aayush\n”;
}
else{
cout << “Harshit\n”;
}
}
int main() {
int T;
cin>>T;
for( int i = 1; i <= T; i++){
int n1, n2;
cin >> n1 >> n2;
winner( n1, n2);
}
return 0;
}

hi @akki56756_bab14f919dbad123
ur code is fine… there is some compiler issue that’s why its showing one test case as failed…

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.