Find the Runner-Up Score!

  • + 0 comments

    if name == 'main': n = int(input()) arr = map(int, input().split()) score = list(arr) winner = max(score) runnerup = max([x for x in score if x!=winner]) print(runnerup)