L = int(input()) N = int(input()) W = list(map(int,input().split())) W.sort() ans=0 for w in W: if L>=w: L-=w ans+=1 print(ans)