l=int(input()) n=int(input()) w=sorted(map(int,input().split())) v=0 for i,j in enumerate(w,start=1): v+=j if v>l:i-=1;break print(i)