408651: GYM103256 A Coffee Bar
Description
One of the favorite places of students in ESCOM campus is the coffee bar located in the first floor of Building $$$1$$$. In that coffee bar you can buy some snacks and beverage while waiting for a professor or during the break between classes.
The ciabatta sandwiches are undoubtedly the most popular product there. They offer various ingredients for the ciabatta sandwiches: ham, sausage, turkey, beef, tuna, etc.
Today we celebrate the $$$28$$$th Anniversary of ESCOM. Because of that, the problem setters have decided to give you the chance to simulate an order in the coffee bar of ESCOM.
You are given a menu containing $$$n$$$ ingredients. Each ingredient is given as a string of lowercase and uppercase letters without spaces. You need to choose one ingredient (can be any of them) and print it.
InputThe first line contains an integer $$$n$$$ ($$$1 \leq n \leq 10$$$) $$$-$$$ the number of ingredients of ciabatta sandwiches offered in the menu of the coffee bar.
The following $$$n$$$ lines contain the ingredients offered. Each ingredient is represented as a string consisting of lowercase and uppercase letters. The length of each string is at most $$$10$$$.
OutputPrint a single string $$$-$$$ the ingredient that you would like to order.
If there are multiple answers, you can print any of them.
ExamplesInput5 Ham Sausage Turkey Beef TunaOutput
SausageInput
1 CheeseOutput
CheeseNote
The words are case sensitive. For example, "Sausage" is different to "sausage" or "SaUsAgE"
We don't guarantee that you will actually get a ciabatta sandwich.