Given the tire descriptor typically found on the sidewall of a passenger car or light-truck tire, calculate the tire's overall circumference.

A tire descriptor contains the following items of information, in order:
P (passenger), LT (light truck), or T (temporary spare tire)./.75 means the section height equals 75% of the section width.R means radial and D means diagonal. This letter may optionally be preceded by a speed symbol (one uppercase letter, such as H).The overall diameter is the diameter of the inflated tire measured at the outermost surface of the tread; it equals the rim diameter plus twice the section height. The overall circumference (the value you must compute) is $\pi$ times the overall diameter.
The input consists of one or more lines, terminated by end-of-file. Each line contains one tire descriptor as described above. All numeric quantities are positive integers. Exactly one blank space separates consecutive items on a line (including the slash).
For each input line, print exactly one line consisting of the original input line, followed by a colon and a single space, and then the overall circumference in centimeters rounded to the nearest integer.
Note that 1 centimeter equals 10 millimeters and 1 inch equals 2.54 centimeters.