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.
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.
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.
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.
Input:
Brazil
5.031
1.54178
Output:
The Grand Prix of Brazil runs over 61 laps (306.891 km).
Input:
Belgium
7.004
2.88772
Output:
The Grand Prix of Belgium runs over 42 laps (294.168 km).
Input:
Monaco
3.340
1.13895
Output:
The Grand Prix of Monaco runs over 78 laps (260.52 km).