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