Accept a sequence of words as input, append all these words to a list in the order in which they are entered, and print this list as output.
Input
The first line is a positive integer n, the number of words in the sequence. Each of the next n lines has one word on it.
Output
A single line: the list of the n words, in the order they were entered, printed exactly as Python prints a list.
Example
Input
3
apple
ball
cat
Output
['apple', 'ball', 'cat']
Write a complete program: read the input with input() and print the result with print().
Input
3
apple
ball
cat
Output
['apple', 'ball', 'cat']