n,k = map(int,input().split()) a = list(map(int,input().split())) a = sorted(a)[::-1] print(sum(a[:k]))