Find the Runner-Up Score!

  • + 0 comments

    For Python3 Platform

    n = int(input())
    arr = list(map(int, input().split()))
    
    res = max([i for i in arr if i != max(arr)])
    
    print(res)