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