7 lines
153 B
Python
7 lines
153 B
Python
# n = int(raw_input())
|
|
# arr = map(int, raw_input().split())
|
|
arr = [5,4,6,2,3,1,1,1,4,8,7,7]
|
|
|
|
out = filter(lambda x: x != max(arr), arr)
|
|
|
|
print max(out)
|