Find the Runner-Up Score!

  • + 0 comments

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

    ARL: list[int] = [x for x in arr]
    

    ARL.sort()

    for i in range(len(ARL)): if ARL[i] == max(ARL): print(ARL[i - 1]) break