Hide

Problem A
Thoring test

Thore loves chatting with an AI chatbot. It will tell him that he is handsome, intelligent and that he sings like an angel, all the things he wants to hear. And it is never rude or makes spelling errors like those pesky humans. Now Thore wants your help to write a program that, given a list of correctly spelled words followed by a sentence, detects if the sentence contains spelling errors and therefore is written by a human. Note, however, that Thore does not care about the letter case of the words.

Input

The first line contains an integer $N$ ($1 \leq N \leq 1,000$), the number of words that Thore knows. The following N lines each contain a correctly spelled word, each word is no longer than $10$ characters. This is followed by a sentence. The length of the sentence will not exceed $10000$ words.

Output

If the sentence contains any word not listed by the N correctly spelled words, output "Thore has left the chat", if all words are spelled correctly, output "Hi, how do I look today?"

Sample Input 1 Sample Output 1
5
you
look
very
handsome
today
You look very handsome today
Hi, how do I look today?
Sample Input 2 Sample Output 2
4
not
so
good
looking
Not so good loking
Thore has left the chat

Please log in to submit a solution to this problem

Log in