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[0], x[1]))
for i in coordinates:
print (*i)
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 11653 소인수분해 (C/C++) (0) | 2022.06.28 |
---|---|
[백준] 11651번 좌표 정렬하기 2 (파이썬) (0) | 2022.06.28 |
[백준] 11508번 2+1 세일 (파이썬) (0) | 2022.06.28 |
[백준] 11399번 ATM (파이썬) (0) | 2022.06.21 |
[백준] 11051번 이항 계수 2 (파이썬) (0) | 2022.06.21 |