My issue
My code
n=int(input())
count=0
for i in range(0,n):
p1=int(input())
p2=int(input())
p3=int(input())
p4=int(input())
if(p1>=10):
count++
if(p2>=10):
count++
if(p3>=10):
count++
if(p4>=10):
count++
print(count)
Problem Link: PRACTICEPERF Problem - CodeChef