How is my code wrong? it is not working

n = int(input())

for i in range(n):
sol = list(map(int,input().split(" ")))
a = 0
b = 0
for k in sol:
if k%2==0:
a+=1
else:
b+=1
if a>b:
print(“READY FOR BATTLE”)
else:
print(“NOT READY”)