What to write in the else statement form printing the previous count value

My issue

My code

a,b,c,d=list(map(int,input().split()))
li=[a,b,c,d]
count=0
for i in range(li):
    if(li[i]>=10):
        count+=1
    else:
        

Problem Link: PRACTICEPERF Problem - CodeChef

@nainsidayal
u don’t need of else statement just print the count outside the loop