import sys
input = sys.stdin.readline
N = int(input())
coordinates = []
for _ in range(N):
coordinates.append(list(map(int, input().split())))
coordinates.sort(key=lambda x: (x[1], x[0]))
for i in coordinates:
print (*i)
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 11654번 아스키 코드 (C/C++) (0) | 2022.06.28 |
---|---|
[백준] 11653 소인수분해 (C/C++) (0) | 2022.06.28 |
[백준] 11650 좌표 정렬하기 (파이썬) (0) | 2022.06.28 |
[백준] 11508번 2+1 세일 (파이썬) (0) | 2022.06.28 |
[백준] 11399번 ATM (파이썬) (0) | 2022.06.21 |