[백준]S5-11651

py_code·2021년 1월 3일
0

백준-실버5

목록 보기
14/19
post-custom-banner

import sys
n = int(input())
nums = [tuple(map(int,sys.stdin.readline().split())) for _ in range(n)]
sorted_nums = sorted(nums, key = lambda x: (x[1], x[0]))
for e in sorted_nums:
    print(' '.join(map(str,e)))
profile
개발자를 꿈꿉니다.

0개의 댓글