l=int(input()) n=int(input()) w=list(map(int,input().split())) x=0 y=0 for i in sorted(w): if x+i<=l: x+=i y+=1 else: break print(y)