Case = int(input())

coord_list = []
for _ in range(Case):
    coord_list.append(list(map(int, input().split())))
coord_list = sorted(coord_list, key = lambda x : (x[0], x[1]))

for coord in coord_list:
    print(*coord)

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 카카오 코드 페스티벌 예선 15953번(python)  (0) 2019.07.30
백준 10814번(python)  (3) 2019.07.19
백준 1107번(python)  (0) 2019.07.10
백준 1436번(python)  (1) 2019.07.08
백준 1018번(python)  (0) 2019.07.08