Find the Runner-Up Score!

  • + 0 comments

    if name == 'main': n = int(input()) arr = list(map(int, input().split()))

    s = list(set(arr))
    s.sort(reverse = True)
    print(s[1])