Run ID:55627
提交时间:2023-07-30 14:37:20
arr=[] for i in map(int,input().split()): arr.append(i) n=int(input()) a=0 m=n+30 for i in arr: if i<=m: a+=1 print(a)