mirror of
https://github.com/EDeev/web-dev.git
synced 2026-06-15 19:11:12 +03:00
5 lines
155 B
Python
5 lines
155 B
Python
n = int(input())
|
|
scores = list(map(int, input().split()))
|
|
max_score = max(scores)
|
|
second_max = max([s for s in scores if s < max_score])
|
|
print(second_max)
|