L = int(input()) N = int(input()) W = list(map(int, input().split())) W.sort() for i in range(1,N): if(sum(W[:i])>L): break print(i-1)