Help me in solving MONSTER1 problem

My issue

My code

/* package codechef; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc = new Scanner(System.in);
		int t=sc.nextInt();
	        while(t-->0){
	        
		    int h=sc.nextInt();
		    int x=sc.nextInt(); //lose after being hit
		    int y=sc.nextInt(); //gain before hit 
		    
		    
		    if(y>=x) {
		        System.out.println("0");
	        }
		    else{
		        System.out.println("1");
		    }  
	     }   
	 }
		    
}
	


``` It is reporting run time error ,please help!
Problem Link: https://www.codechef.com/DSAPREP_01/problems/MONSTER1

@nikitatewari16
Use long long int because of high constraints.

@dpcoder_007 thank you