Find the Runner-Up Score!

  • + 0 comments

    if name == 'main': n = int(input()) arr = map(int, input().split()) l = list(arr) k = set() for i in l: k.add(i) r = list(k) r.sort(reverse = True) print(r[1])