Why it is not excepted by codechef?

n = int(input())
n_e = 0
n_o = 0
a = list(map(int,[x for x in (input().split())))
for j in a:
if(j%2 == 0):
n_e += 1
else:
n_o +=1
if n_e>n_o:
print(“READY FOR BATTEL”)
else:
print(“NOT READY”)

Please either format your code or (better!) link to your submission - the forum software has mangled it and it won’t compile! :slight_smile:

Also, what Problem are you trying to solve? :slight_smile:

Also also - maybe BATTLE instead of BATTEL? Though perhaps the mispelling was in the original Problem …

Edit:

Turns out it was this problem, and he solved it.