Help me in solving PRACTICEPERF problem

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

@somasekhar185
u can’t use ++ in python
do it as count+=1 or count=count+1;