1465: 【入门】坐标排序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:2

Description

输入n个不同的坐标,按x轴的值从小到大排序,如果x相同,则按照y排序。

Input

第1行是一个整数n(n<=10000)。
接下来有n行,每行有2个整数,代表了1个点的坐标。

Output

输出n行,每行有2个整数,输出排序后的n个坐标。

Sample Input Copy

4
-1 -1
1 1
-1 1
1 -1

Sample Output Copy

-1 -1
-1 1
1 -1
1 1