← Back to List

20976번: 2 番目に大きい整数 (The Second Largest Integer) ↗

Solutions

Python 3
48 B | 48 chars
print(sorted(list(map(int,input().split())))[1])