n=int(input()) r=int(input()) s=list(map(int,input().split())) s.sort() c=s[0] d=0 while n>c: c += s[d+1] d += 1 print(d)