Run ID:84394
提交时间:2024-07-15 18:46:36
n,t=map(int,input().split()) a=list(map(int,input().split())) res=0 for i in a: if t>=i: res+=1 else: res=res print(res)