In Formula One racing, the race length is defined as the smallest number of complete laps that exceeds 305 kilometers. The Monaco Grand Prix is the sole exception with a race length of 78 laps, for a total of 260.52 kilometers.

formula one
Formula One cars wind through the infield section of the Indianapolis Motor Speedway during the 2003 United States Grand Prix.

Occasionally some races are truncated due to special circumstances. For example, there is an additional rule that states that races cannot exceed two hours in length. If this time limit is reached, the race is ended after of the current lap.

Input

Three lines containing respectively the name of the Grand Prix, the lap distance $$d \in \mathbb{R}$$ (in kilometers), and the average lap time $$t \in \mathbb{R}$$ (in minutes) in the current conditions.

Output

A single line that gives the number of laps for the Grand Prix described by the input lines. Use the text

The Grand Prix of name runs over t laps (k km).

as a template for the output. Fragments in italics need to be filled based on given and computed information.

Example

Input:

Brazil
5.031
1.54178

Output:

The Grand Prix of Brazil runs over 61 laps (306.891 km).

Example

Input:

Belgium
7.004
2.88772

Output:

The Grand Prix of Belgium runs over 42 laps (294.168 km).

Example

Input:

Monaco
3.340
1.13895

Output:

The Grand Prix of Monaco runs over 78 laps (260.52 km).