eolymp
bolt
Try our new interface for solving problems
Problems

Era Name

Era Name

Time limit 30 seconds
Memory limit 256 MiB

As many of you know, we have two major calendar systems used in Japan today. One of them is Gregorian calendar which is widely used across the world. It is also known as "Western calendar" in Japan.

The other calendar system is era-based calendar, or so-called "Japanese calendar." This system comes from ancient Chinese systems. Recently in Japan it has been a common way to associate dates with the Emperors. In the era-based system, we represent a year with an era name given at the time a new Emperor assumes the throne. If the era name is "A", the first regnal year will be "A 1", the second year will be "A 2", and so forth.

Since we have two different calendar systems, it is often needed to convert the date in one calendar system to the other. In this problem, you are asked to write a program that converts western year to era-based year, given a database that contains association between several western years and era-based years.

For the simplicity, you can assume the following:

  1. A new era always begins on January 1st of the corresponding Gregorian year.

  2. The first year of an era is described as 1.

  3. There is no year in which more than one era switch takes place.

Please note that, however, the database you will see may be incomplete. In other words, some era that existed in the history may be missing from your data. So you will also have to detect the cases where you cannot determine exactly which era the given year belongs to.

Input data

The input contains multiple test cases. Each test case has the following format:

N Q EraName_1 EraBasedYear_1 Western_Year_1 ... EraName_N EraBasedYear_N WesternYear_N Query_1 ... Query_Q

The first line of the input contains two positive integers N and Q (1N1000, 1Q1000). N is the number of database entries, and Q is the number of queries.

Each of the following N lines has three components: era name, era-based year number and the corresponding western year (1EraBasedYear_iWesternYear_i10^9). Each of era names consist of at most 16 Roman alphabet characters. Then the last Q lines of the input specifies queries (1Query_i10^9), each of which is a western year to compute era-based representation.

The end of input is indicated by a line containing two zeros. This line is not part of any dataset and hence should not be processed.

You can assume that all the western year in the input is positive integers, and that there is no two entries that share the same era name.

Output data

For each query, output in a line the era name and the era-based year number corresponding to the western year given, separated with a single whitespace. In case you cannot determine the era, output "Unknown" without quotes.

Examples

Input example #1
4 3
meiji 10 1877
taisho 6 1917
showa 62 1987
heisei 22 2010
1868
1917
1988
1 1
universalcentury 123 2168
2010
0 0
Output example #1
meiji 1
taisho 6
Unknown
Unknown
Source ACM International Collegiate Programming Contest JAG Practice Contest, Tokyo, 2010-11-28