Help me in solving MISSP problem

My issue

whats wrong with my code

My code

# cook your dish here
T=int(input())
sum=0
for i in range(T):
    N=int(input())
    for j in range(N):
         A=int(input())
         if A%2!=0:
            sum+=1
    
    
print(sum)    

Learning course: Arrays, Strings & Sorting
Problem Link: CodeChef: Practical coding for everyone

it will be better if you could explain what exactly you wanna print may be your logic is not right (as I feel this after reading you code) if you can let me know what exactly you want the console to print then I can definitely help you

#lovecoding