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