n,m=map(int,input().split()) a=sorted(map(int,input().split())) ans=0 for i in a: if i<=m: m-=i ans+=1 print(ans)