Write a program that reads a sequence of strings from the standard input and displays them in a lexicographic order without duplicates.
Try to write your solution using a set.
Input data format
The first line contains the size of a string sequence. Next lines contain strings.
Output data format
A sorted sequence of strings without duplicates. Each string must be in a new line.