Find the Runner-Up Score!

  • + 0 comments
    if __name__ == '__main__':
        n = int(input())
        arr = list(map(int, input().split()))
        
    arr.sort(reverse=True)
    print(list(set(arr))[1])