n,k=map(int,input().split()) a=list(map(int,input().split())) a.sort() c=0 for i in range(k): if a[~i]>0: c+=a[~i] print(c)