Limits 1s, 512 MB

Given the radius (rr) of a circle you have to calculate the ratio between the circumference (CC) of the circle and its diameter (dd).

The circumference of a circle is its enclosing boundary. It is calculated as C=2πrC = 2 \pi r.

The diameter of a circle is any straight line segment that passes through the center of the circle and whose endpoints lie on the circumference of the circle.

For this problem, you have to calculate the ratio C:dC:d. You have to print the answer accurate to 5 decimal places.

Input

The input will contain a single floating point number rr (0<r<1000 < r < 100).

Output

Print the ratio C:dC:d as a floating point number accurate to 5 decimal places.

Sample

InputOutput
3
3.14159

Submit

Login to submit.

Statistics

96% Solution Ratio
Being_GoromEarliest, Nov '22
user.1561Fastest, 0.0s
Himel24Lightest, 4.9 MB
anonyo.akandShortest, 7B
Toph uses cookies. By continuing you agree to our Cookie Policy.