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