Read n integers. Print the second largest. The input contains at least two distinct values.
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
5 3 1 4 1 5
Output
4