L=int(input()) N=int(input()) W=list(map(int,input().split())) W.sort() ans=0 for i in range(N): L-=W[i] if L<0: break else: ans+=1 print(ans)