3 lines
83 B
Python
3 lines
83 B
Python
n = int(input())
|
|
arr = list(map(int, input().split(" ")))
|
|
print(min(arr), max(arr)) |