Preparando MOJI

The Teacher of Physical Education

1000ms 262144K

Description:

n pupils came to Physical Education lesson. We know the name and the height of each pupil.

Your task is to help the teacher of Physical Education to line up all pupils in non-decreasing order of their heights.

Input:

The first line contains the positive integer n (1 ≤ n ≤ 5000) — the number of pupils.

The next n lines contain the pupils' description. In the i-th line there is pupil's name namei (a non-empty string which consists of uppercase and lowercase Latin letters, the length does not exceed five) and pupil's height xi (130 ≤ xi ≤ 215). Some pupils can have the same name. Uppercase and lowercase letters of the alphabet should be considered different.

Output:

Print n lines — pupils' names in the non-decreasing order of their heights. Each line must contain exactly one name.

If there are several answers, print any of them. Uppercase and lowercase letters of the alphabet should be considered different.

Sample Input:

4
Ivan 150
Igor 215
Dasha 158
Katya 150

Sample Output:

Ivan
Katya
Dasha
Igor

Sample Input:

2
SASHA 180
SASHA 170

Sample Output:

SASHA
SASHA

Informação

Codeforces

Provedor Codeforces

Código CF683B

Tags

*special

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:06:58

Relacionados

Nada ainda