Help me in solving AMR15A problem

My issue

My code

#include <stdio.h>

int main(void) {
	// your code goes here
	int n,c=0,t=0;
	scanf("%d",&n);
	int a[n];
	for(int i=0;i<n;i++){
	    scanf("%d",&a[i]);
	    if(a[i]%2==0)
	    c=c+1;
	    else
	    t=t+1;
	    
	}if(c>t)
	printf("READY FOR BATTLE");
	else
	printf("NOT READY FOR BATTLE");
	return 0;
}


Problem Link: AMR15A Problem - CodeChef

print “NOT READY” instead of “NOT READY FOR BATTLE” in else part.