L=int(input()) N=int(input()) W=list(map(int,input().split())) W.sort() summary=0 for i in range(N): summary+=W[i] if summary>L: break print(i)