N, K = map(int, input().split()) A = list(map(int, input().split())) A.sort() print(sum(i for i in A[:K] if i >= 0))