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