L,N=map(int,(input(),input())) W=sorted(map(int,input().split())) ans=0 while W: L-=W.pop(0) ans+=(L>=0) print(ans)