Help me in solving MONSTER1 problem

My issue

My code

#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int H,X,Y,T;
	cin>>T;
	while(T--){
	    cin>>H>>X>>Y;
	    if(Y>=X){
	        cout<<"0"<<endl;
	    }
	    else{
	        cout<<"1"<<endl;
	    }
	}
	return 0;
}

Problem Link: CodeChef: Practical coding for everyone

when i clicked on debug option ,it is showing the input for which my testcase is failing but when i saw the expected output it is showing only one line output for four different testcases . can you please help me in solving this problem??