Help me in solving MONSTER1 problem (my output is correct but when I'm going to submit it is showin

My issue

My code

#include <stdio.h>

int main(void) {
    int t;
    long long int x,h,y;
	scanf("%d",&t);
	while(t--){
	    scanf("%d%d%d",&h,&x,&y);
	    if(x>y)
	    printf("%d\n",1);
	    else
	    printf("%d\n",0);
	}
	return 0;
}


Problem Link: CodeChef: Practical coding for everyone

@np899355
take all as long long int because of high constraints

Bro i have taken h,x,y as long long integer and there is no need of taking t as long long integer

@np899355
u have written %d in scanf which will be taken as int

Ohh! Thanks bro