Help me in solving PRACTICEPERF problem

My issue

how to get input

My code

# cook your dish herelst
lst1 = []
lst1 = [int(item) for item in range in input.split()]

Problem Link: PRACTICEPERF Problem - CodeChef

@madnithin
plzz refer the following solution

# cook your dish here
x=list(map(int,input().split()))
count=0
for i in x:
    if i>=10:
        count+=1
print(count)