← Back to List

10818번: 최소, 최대 ↗

Solutions

Python 3
64 B | 64 chars
input()
L=list(map(int,input().split(" ")))
print(min(L),max(L))