Skip to content

Commit

Permalink
2024.02.27
Browse files Browse the repository at this point in the history
  • Loading branch information
2secondag committed Feb 27, 2024
1 parent a698fc7 commit 146a05a
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import sys
N = int(sys.stdin.readline())
list = []

for i in range(N):
x,y = map(int ,sys.stdin.readline().split())
list.append([x,y])

list.sort()

for i in list:
print(i[0],i[1])

0 comments on commit 146a05a

Please sign in to comment.