Problem5447--查字典

5447: 查字典

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

有一本字典,每行一个单词(不含空格),单词之后是对该单词的解释。
例如:
pig  A kind of animal.
其中 A kind of animal. 是对单词 pig 的解释。
给你一个单词,请从字典中查找出该单词的解释。

Input

第一行:一个整数 $n$($1 \leq n \leq 100$),字典中单词的数量。
接下来 $n$ 行:
每行一个单词 以及 对该单词的解释。
最后一行:
需要查询的单词。
(所有单词和解释不超过 $200$ 个字符)

Output

输出该单词对应的解释(允许解释前后存在空格)。

Sample 1 Input

5
pig A kind of animal.
table A kind of tool.
cup A tool for drinking.
pen A tool for writting.
book It's a tool for reading and writting.
pen

Sample 1 Output

 A tool for writting.

Source/Category

字符数组