#include<stdio.h>
#include<string.h>
#define N 40
#define MAX_LEN 10
void SortString(char a[][MAX_LEN] , int n);
int main()
{
int i, n;
char str[N][MAX_LEN];
scanf("%d",&n);
getchar();
for(i =0 ;i < n; i++)
{
scanf("%s",str[i]);
}
SortString(str ,n);
for(i = 0 ;i < n; i++)
{
puts(str[i]);
}
return 0 ;
}
void SortString(char str[][MAX_LEN] , int n)
{
int i ,j ;
char temp[MAX_LEN];
for(i = 0 ;i < n ;i++)
for(j = i+1 ;j <n ;j++)
{
if(strcmp(str[j] ,str[i])<0)
{
strcpy(temp ,str[i]);
strcpy(str[i],str[j]);
strcpy(str[j],temp);
}
}
}