L = int(input()) N = int(input()) W = list(map(int , input().split())) W.sort() count = 0 for itr in range(N): if L-W[itr] < 0: break else : L = L - W[itr] count = count + 1 print(count)