https://www.acmicpc.net/problem/11650
시간 1초, 메모리 256MB
input :
output :
조건 :
람다 함수로 정렬하자.
import sys
n = int(sys.stdin.readline())
position = []
for i in range(n):
x, y = map(int, sys.stdin.readline().split())
position.append((x, y))
position = sorted(position, key=lambda x : (x[0], x[1]))
for item in position:
print(*item)