eolymp
bolt
Try our new interface for solving problems
Problems

Pizza Pricing

Pizza Pricing

Time limit 1 second
Memory limit 64 MiB

Pizza has always been a staple on college campuses. After the downturn in the economy, it is more important than ever to get the best deal, namely the lowest cost per square inch. Consider, for example, the following menu for a store selling circular pizzas of varying diameter and price:

One could actually compute the costs per square inch, which would be approximately 10.2¢, 7.6¢, and 7.1¢ respectively, so the 12-inch pizza is the best value. However, if the 10-inch had been sold for $5, it would have been the best value, at approximately 6.4¢ per square inch.

Your task is to analyze a menu and to report the diameter of the pizza that is the best value. Note that no two pizzas on a menu will have the same diameter or the same inherent cost per square inch.

Input data

N

N

N

D

P

D

P

The input contains a series of one or more menus. Each menu starts with the number of options , 1 ≤ ≤ 10, followed by lines, each containing two integers respectively designating a pizza's diameter (in inches) and price (in dollars), with 1 ≤ ≤ 36 and 1 ≤ ≤ 100. The end of the input will be designated with a line containing the number 0.

Output data

D

For each menu, print a line identifying the menu number and the diameter of the pizza with the best value, using the format shown below.

Examples

Input example #1
3
5 2
10 6
12 8
3
5 2
10 5
12 8
4
1 1
24 33
13 11
6 11
0
Output example #1
Menu 1: 12
Menu 2: 10
Menu 3: 24
Source ACM Mid-Central Regional Programming Contest 2011